|
From: Benjamin C. <bc...@us...> - 2002-03-28 22:11:48
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv11968
Modified Files:
upgrade.php
Log Message:
FORCE_LOGIN default to off
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- upgrade.php 28 Mar 2002 20:47:06 -0000 1.17
+++ upgrade.php 28 Mar 2002 22:11:45 -0000 1.18
@@ -57,7 +57,7 @@
}
$db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('RECALL_LOGIN','0','Enable use of cookies to store username between logins','bool')");
$db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('SHOW_PROJECT_SUMMARIES', '1', 'Itemize bug stats by project on the home page', 'bool')");
- $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('FORCE_LOGIN', '1', 'Force users to login before being able to use the bug tracker', 'bool')");
+ $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('FORCE_LOGIN', '0', 'Force users to login before being able to use the bug tracker', 'bool')");
}
include 'templates/default/upgrade-finished.html';
}
|