You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2009/10/13 22:20:50 UTC

svn commit: r824908 - /incubator/vcl/trunk/web/testsetup.php

Author: jfthomps
Date: Tue Oct 13 20:20:50 2009
New Revision: 824908

URL: http://svn.apache.org/viewvc?rev=824908&view=rev
Log:
fixed check for display_errors where

$a = ''

should have been

$a == ''

Modified:
    incubator/vcl/trunk/web/testsetup.php

Modified: incubator/vcl/trunk/web/testsetup.php
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/testsetup.php?rev=824908&r1=824907&r2=824908&view=diff
==============================================================================
--- incubator/vcl/trunk/web/testsetup.php (original)
+++ incubator/vcl/trunk/web/testsetup.php Tue Oct 13 20:20:50 2009
@@ -434,7 +434,7 @@
 title("Checking value of PHP display_errors");
 $a = ini_get('display_errors');
 print "<ul>\n";
-if($a == 'Off' || $a == 'off' || $a = '')
+if($a == 'Off' || $a == 'off' || $a == '')
 	print "<li>display_errors: <strong>disabled</strong></li>\n";
 elseif($a == 'On' || $a == 'on' || $a == 1)
 	print "<li>display_errors: <strong>enabled</strong></li>\n";