diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-22 13:46:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-22 13:46:11 +0000 |
commit | 6608f70cff82808b3c9bbc98ae3dd76d123330f0 (patch) | |
tree | ab746e095b421924b35c1ddcb8ff7dee8e0920cb /.htaccess | |
parent | eb68540da33d7a911922bf497faa999236978e06 (diff) | |
download | brdo-6608f70cff82808b3c9bbc98ae3dd76d123330f0.tar.gz brdo-6608f70cff82808b3c9bbc98ae3dd76d123330f0.tar.bz2 |
- Patch #308834 by c960657: move setting of magic_quotes_runtime out of settings.php because (i) we don't want a user to change it and (ii) it gets executed a bit earlier in the Drupal bootstrap.
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -24,8 +24,9 @@ ErrorDocument 404 /index.php # Set the default handler. DirectoryIndex index.php -# Override PHP settings. More in sites/default/settings.php -# but the following cannot be changed at runtime. +# Override PHP settings that cannot be changed at runtime. See +# sites/default/default.settings.php and drupal_initialize_variables() in +# includes/bootstrap.inc for settings that can be changed at runtime. # PHP 5, Apache 1 and 2. <IfModule mod_php5.c> |