|
From: Benjamin C. <bc...@us...> - 2003-03-11 13:25:48
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv26829
Modified Files:
upgrade.php
Log Message:
Fixes bug #700881 - Assign To Group set incorrectly
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/upgrade.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- upgrade.php 2 Mar 2003 15:28:54 -0000 1.29
+++ upgrade.php 11 Mar 2003 13:25:35 -0000 1.30
@@ -79,7 +79,7 @@
break;
}*/
- $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('ASSIGN_TO_GROUP', '3', 'The group to whom bugs can be assigned', 'multi');");
+ $db->query("INSERT INTO ".TBL_CONFIGURATION." VALUES ('GROUP_ASSIGN_TO', '3', 'The group to whom bugs can be assigned', 'multi');");
}
include 'templates/default/upgrade-finished.html';
}
|