|
From: Benjamin C. <bc...@us...> - 2001-08-31 14:11:26
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv18758
Modified Files:
bug.php
Log Message:
DB changes
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- bug.php 2001/08/30 13:49:08 1.33
+++ bug.php 2001/08/31 04:25:07 1.34
@@ -301,7 +301,7 @@
'TITLE' => $TITLE['editbug'],
'title' => stripslashes($row['title']),
'description' => stripslashes($row['description']),
- 'url' => $row['URL'],
+ 'url' => $row['url'],
'urllabel' => $row['url'] ? "<a href='{$row['url']}'>URL</a>" : 'URL',
'severity' => build_select('severity',$row['severity_id']),
'priority' => build_select('priority',$row['priority']),
@@ -472,7 +472,7 @@
return;
case 1 :
$row = $q->grab();
- $project = $row['ProjectID'];
+ $project = $row['project_id'];
show_form();
break;
default :
@@ -482,8 +482,8 @@
while ($row = $q->grab()) {
$t->set_var(array(
'id' => $row['project_id'],
- 'name' => $row['name'],
- 'description' => $row['description'],
+ 'name' => $row['project_name'],
+ 'description' => $row['project_desc'],
'date' => date(DATEFORMAT,$row['created_date'])
));
$t->parse('rows','row',true);
|