From 80dec813306c32add3fc206487ef4ffc4248aa03 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Wed, 27 Apr 2005 08:36:41 +0000 Subject: [PATCH] Bug 12702 : session_auto_start == false --- html/admin/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/admin/setup.php b/html/admin/setup.php index fd1341308..96ea592a4 100644 --- a/html/admin/setup.php +++ b/html/admin/setup.php @@ -146,7 +146,7 @@ foreach (array('magic_quotes_gpc','magic_quotes_runtime') as $a) { } } -if ( ini_get("session.auto_start") == true ) { +if ( ini_get("session.auto_start") == false ) { print '

session.auto_start must be set to true

'; $flag_php++; }