- check for magic_quotes_runtime in installation and init-script (for updaters) because of strange behavior of Froxlor if enabled (deactivating it temporarily if so, but better fix php.ini)

This commit is contained in:
Michael Kaufmann (d00p)
2010-09-17 10:33:58 +00:00
parent ef97f63b73
commit 8c5f5ba629
4 changed files with 35 additions and 0 deletions

View File

@@ -120,6 +120,15 @@ if(!isset($need_root_db_sql_data) || $need_root_db_sql_data !== true)
$idna_convert = new idna_convert_wrapper();
/**
* disable magic_quotes_runtime if enabled
*/
if(get_magic_quotes_runtime())
{
//Deactivate
set_magic_quotes_runtime(false);
}
/**
* Reverse magic_quotes_gpc=on to have clean GPC data again
*/