From d0327cbbc70f0cb370b8c30f9d881392a3028a1f Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sun, 27 Feb 2011 23:40:49 +0000 Subject: [PATCH] setup.php: - make check for $CONF['configured'] more strict (=== instead of ==) git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@976 a1433add-5e2c-0410-b055-b7f2511e0802 --- setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.php b/setup.php index 6cd4d896..d36eda27 100644 --- a/setup.php +++ b/setup.php @@ -125,7 +125,7 @@ if ($file_config == 1) require($incpath.'/config.inc.php'); if(isset($CONF['configured'])) { - if($CONF['configured'] == TRUE) { + if($CONF['configured'] === TRUE) { print "
  • Checking \$CONF['configured'] - OK\n"; } else { print "
  • Warning: \$CONF['configured'] is 'false'.
    \n";