|
From: Benjamin C. <bc...@us...> - 2001-08-24 03:13:07
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv7280
Modified Files:
Tag: phpbt-0_2_1p
bug.php
Log Message:
Fixes bug with "Assign to owner of component"
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.26
retrieving revision 1.26.2.1
diff -u -r1.26 -r1.26.2.1
--- bug.php 2001/08/11 17:28:43 1.26
+++ bug.php 2001/08/24 03:13:03 1.26.2.1
@@ -210,7 +210,7 @@
break;
}
case 'reassigntocomponent' :
- $assignedto = $q->grab_field("select Owner from Component where ComponentID = $component");
+ $assignedto = $q->grab_field("select Owner from Component where ComponentID = $Component");
$statusfield = 'Assigned'; break;
case 'dupe' :
$changeresolution = true;
|