Changeset 314

Show
Ignore:
Timestamp:
05/08/06 08:41:59 (3 years ago)
Author:
carmartin
Message:

magic_quotes_gpc: Now that we don't really want them on... don't complain about them!

Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/includes_system.php

    r298 r314  
    2727            Configuration problem: The PHP setting 'register_globals', which is a huge security risk, is turned on. 
    2828            There should be a line in the .htaccess file as follows: <code>php_flag register_globals off</code> 
    29         "; 
    30     } 
    31     if (!ini_get('magic_quotes_gpc')) { 
    32         // this shouldn't be needed due to the htaccess file, but just in case... 
    33         $diemessages[] = " 
    34             Configuration problem: The PHP setting 'magic_quotes_gpc' is turned off. 
    35             There should be a line in the .htaccess file as follows: <code>php_flag magic_quotes_gpc on</code> 
    3629        "; 
    3730    }