|
From: Jirka P. <fi...@us...> - 2002-05-21 13:37:03
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv10754/phpbt
Modified Files:
bug.php
Log Message:
Bug update handle for database_id and to_be_closed_in_version_id.
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- bug.php 18 May 2002 02:59:32 -0000 1.106
+++ bug.php 21 May 2002 13:37:00 -0000 1.107
@@ -150,6 +150,7 @@
'component' => TBL_COMPONENT,
'status' => TBL_STATUS,
'resolution' => TBL_RESOLUTION,
+ 'database' => TBL_DATABASE,
'severity' => TBL_SEVERITY,
'os' => TBL_OS,
'version' => TBL_VERSION
@@ -373,6 +374,7 @@
$db->query("update ".TBL_BUG." set title = ".$db->quote(stripslashes($title)).
', url = '.$db->quote(stripslashes($url)).", severity_id = $severity_id, ".
"priority = $priority, status_id = $status_id, ".
+ "database_id = $database_id, to_be_closed_in_version_id = $to_be_closed_in_version_id, ".
"resolution_id = $resolution_id, assigned_to = $assigned_to, ".
"project_id = $project_id, version_id = $version_id, ".
"component_id = $component_id, os_id = $os_id, last_modified_by = $u, ".
|