|
From: Benjamin C. <bc...@us...> - 2002-03-26 18:43:29
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv12588
Modified Files:
upgrade.php
Log Message:
Added configuration option for whether to show detailed project stats on the home page
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- upgrade.php 21 Mar 2002 13:44:54 -0000 1.15
+++ upgrade.php 26 Mar 2002 18:43:25 -0000 1.16
@@ -56,6 +56,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')");
}
include 'templates/default/upgrade-finished.html';
}
|