- 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

@@ -182,6 +182,18 @@ function requirement_checks()
status_message('green', 'OK');
}
// Check if magic_quotes_runtime is active
status_message('begin', $lng['install']['phpmagic_quotes_runtime']);
if(get_magic_quotes_runtime())
{
// Deactivate
set_magic_quotes_runtime(false);
status_message('orange', $lng['install']['active'] . '<br />' . $lng['install']['phpmagic_quotes_runtime_description']);
}
else
{
status_message('green', 'OK');
}
status_message('begin', $lng['install']['phpmysql']);