Changeset 4006 for trunk/install.php


Ignore:
Timestamp:
Oct 9, 2009, 4:41:30 PM (15 years ago)
Author:
patdenice
Message:

merge r4005 from branch 2.0 to trunk
bug 1187: set_magic_quote_runtime and get_magic_quote_gpc are depreciated and can produce notices from PHP 5.3.
Add a @ to avoid this notices.
This functions need to be removed with PHP 6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install.php

    r3747 r4006  
    7878// precaution to prevent someone trying to break out of a SQL statement.
    7979//
    80 if( !get_magic_quotes_gpc() )
     80if( !@get_magic_quotes_gpc() )
    8181{
    8282  if( is_array($_POST) )
Note: See TracChangeset for help on using the changeset viewer.