diff options
Diffstat (limited to '')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 95ed6347e..feefc5085 100644 --- a/install.php +++ b/install.php @@ -77,7 +77,7 @@ function execute_sqlfile($filepath, $replaced, $replacing) // addslashes to vars if magic_quotes_gpc is off this is a security // precaution to prevent someone trying to break out of a SQL statement. // -if( !get_magic_quotes_gpc() ) +if( !@get_magic_quotes_gpc() ) { if( is_array($_POST) ) { |