|
From: Benjamin C. <bc...@us...> - 2003-04-09 12:25:52
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv3704
Modified Files:
upgrade.php
Log Message:
Fixed bug with GROUP_ASSIGN_TO config variable and added EMAIL_DISABLED config variable
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- upgrade.php 9 Apr 2003 12:11:44 -0000 1.31
+++ upgrade.php 9 Apr 2003 12:25:18 -0000 1.32
@@ -48,6 +48,7 @@
}
$db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('GROUP_ASSIGN_TO', '3', 'The group to whom bugs can be assigned', 'multi');");
+ $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('EMAIL_DISABLED', '0', 'Whether to disable all mail sent from the system', 'bool');");
}
include 'templates/default/upgrade-finished.html';
}
|