setup.php: setting magic quotes off should be the ideal setting

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@66 a1433add-5e2c-0410-b055-b7f2511e0802
postfixadmin-2.3
David Goodwin 17 years ago
parent 69de1f06f0
commit 68511080ff

@ -81,13 +81,13 @@ print "<p />\n";
//
if ($f_get_magic_quotes_gpc == 1)
{
if (get_magic_quotes_gpc () == 1)
if (get_magic_quotes_gpc () == 0)
{
print "- Magic Quotes: ON<br /><p />\n";
print "- Magic Quotes: Disabled - OK<br /><p />\n";
}
else
{
print "<li><b>Warning: Magic Quotes: OFF (using internal function!)</b><br /><p />\n";
print "<li><b>Warning: Magic Quotes: ON (internal workaround used)</b><br /><p />\n";
}
}
else

Loading…
Cancel
Save