|
From: Benjamin C. <bc...@us...> - 2001-09-01 16:14:32
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv6255
Modified Files:
bug.php
Log Message:
Use the table alias
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- bug.php 2001/09/01 15:44:20 1.35
+++ bug.php 2001/09/01 16:14:29 1.36
@@ -476,7 +476,7 @@
}
}
- $q->query("select comment_text, comment.created_date, email"
+ $q->query("select comment_text, c.created_date, email"
." from ".TBL_COMMENT." c, ".TBL_AUTH_USER
." where bug_id = $bugid and c.created_by = user_id order by c.created_date");
if (!$q->num_rows()) {
|