|
From: <pdo...@us...> - 2009-07-02 16:39:48
|
Revision: 13787
http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=13787&view=rev
Author: pdontthink
Date: 2009-07-02 16:39:47 +0000 (Thu, 02 Jul 2009)
Log Message:
-----------
Make session.auto_start = 1 a fatal condition
Modified Paths:
--------------
branches/SM-1_4-STABLE/squirrelmail/src/configtest.php
Modified: branches/SM-1_4-STABLE/squirrelmail/src/configtest.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/src/configtest.php 2009-06-07 10:17:59 UTC (rev 13786)
+++ branches/SM-1_4-STABLE/squirrelmail/src/configtest.php 2009-07-02 16:39:47 UTC (rev 13787)
@@ -92,14 +92,13 @@
echo $IND . 'error_reporting: ' . ini_get('error_reporting') . "<br />\n";
-// FIXME: words like "probably" and "usually" should be removed and do_err() should be called with TRUE for the second argument when we confirm that this does in fact affect everyone
if ((bool) ini_get('session.auto_start') && ini_get('session.auto_start') != 'off') {
$msg = 'session.auto_start is turned on in your PHP configuration, but SquirrelMail'
- . ' 1.4.x probably will not work with it (otherwise valid logins will usually'
+ . ' 1.4.x will not work with it (otherwise valid logins will usually'
. ' result in "You must be logged in to access this page" errors).'
. ' You can disable session.auto_start only in the squirrelmail directory'
. ' if you need to leave it turned on for other applications.';
- do_err($msg, false);
+ do_err($msg, true);
}
$safe_mode = ini_get('safe_mode');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|