|
From: Benjamin C. <bc...@us...> - 2002-03-27 23:19:10
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv29808
Modified Files:
index.php
Log Message:
Fixed a bug with the recent bugs list
Index: index.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/index.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- index.php 27 Mar 2002 18:01:33 -0000 1.24
+++ index.php 27 Mar 2002 23:19:07 -0000 1.25
@@ -189,7 +189,7 @@
while (extract($rs->fetchRow())) {
$t->set_var(array(
'title' => stripslashes($title),
- 'bugid' => $bugid,
+ 'bugid' => $bug_id,
'project' => stripslashes($project_name)
));
$t->parse('recentrows', 'recentrow', true);
@@ -207,7 +207,7 @@
while (extract($rs->fetchRow())) {
$t->set_var(array(
'title' => stripslashes($title),
- 'bugid' => $bugid,
+ 'bugid' => $bug_id,
'project' => stripslashes($project_name)
));
$t->parse('closerows', 'closerow', true);
|