|
From: Benjamin C. <bc...@us...> - 2002-04-03 19:04:32
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv13740
Modified Files:
upgrade.php
Removed Files:
css.php
Log Message:
Switching the location of the css file. Color scheme now selectable on the configuration page
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- upgrade.php 3 Apr 2002 01:00:52 -0000 1.20
+++ upgrade.php 3 Apr 2002 18:18:02 -0000 1.21
@@ -75,6 +75,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', '0', 'Force users to login before being able to use the bug tracker', 'bool')");
+ $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('STYLE', 'default', 'The CSS file to use (color scheme)', 'multi')");
}
include 'templates/default/upgrade-finished.html';
}
--- css.php DELETED ---
|