|
From: Benjamin C. <bc...@us...> - 2002-03-11 18:28:38
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv13382
Modified Files:
bug.php
Log Message:
Fixed the error message when no projects are available when trying to report a bug
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- bug.php 5 Mar 2002 22:14:00 -0000 1.82
+++ bug.php 11 Mar 2002 18:28:35 -0000 1.83
@@ -843,7 +843,7 @@
switch ($q->num_rows()) {
case 0 :
- $t->set_var('rows',$STRING['noprojects']);
+ $t->set_var('content',"<div class=\"error\">{$STRING['noprojects']}</div>");
return;
case 1 :
$row = $q->grab();
|