Hi,
I installed 4.3.1 beside 4.3.0 and preserved my includes/conf.php. The installs were each in their own directory. Operation appeared fine except the addition of the "you must set magic_quotes_gpc = 0" error at the top of each rendered page.
Hmmm, . . .
Try it from 4.3.0/ - no error.
try it from 4.3.1/ - error.
Hmmm, . . . okay. try it again, same results. "Must be an ID-10-T error," I say to myself. Check /etc/php.ini, "magic_quotes_gpc = off", okay, try '0' rather than 'off'. Try again, no joy.
What's happening locally?
grep -r "magic_quotes" *
drupal/.htaccess: php_value magic_quotes_gpc 0
drupal/.htaccess: php_value magic_quotes_runtime 0
drupal/.htaccess: php_value magic_quotes_sybase 0
drupal/index.php:check_php_setting("magic_quotes_gpc", 0);
drupal/INSTALL: magic_quotes_gpc 0
drupal-4.3.0/.htaccess: php_value magic_quotes_gpc 0
drupal-4.3.0/.htaccess: php_value magic_quotes_runtime 0
drupal-4.3.0/.htaccess: php_value magic_quotes_sybase 0
drupal-4.3.0/includes/common.inc: if (ini_get("magic_quotes_gpc") == 0) return;
drupal-4.3.0/INSTALL: magic_quotes_gpc 0
drupal-4.3.1/.htaccess: php_value magic_quotes_gpc 0
drupal-4.3.1/.htaccess: php_value magic_quotes_runtime 0
drupal-4.3.1/.htaccess: php_value magic_quotes_sybase 0
drupal-4.3.1/index.php:check_php_setting("magic_quotes_gpc", 0);