From 68511080ff6408ce1864fa7bff817e7a358bc310 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sat, 22 Sep 2007 08:05:27 +0000 Subject: [PATCH] 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 --- setup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.php b/setup.php index 98f82ff4..58f8c8bf 100644 --- a/setup.php +++ b/setup.php @@ -81,13 +81,13 @@ print "

\n"; // if ($f_get_magic_quotes_gpc == 1) { - if (get_magic_quotes_gpc () == 1) + if (get_magic_quotes_gpc () == 0) { - print "- Magic Quotes: ON

\n"; + print "- Magic Quotes: Disabled - OK

\n"; } else { - print "

  • Warning: Magic Quotes: OFF (using internal function!)

    \n"; + print "

  • Warning: Magic Quotes: ON (internal workaround used)

    \n"; } } else