|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:44:38
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18687/templates/default Modified Files: Tag: htmltemplates index.html Log Message: Fix from mufasa for undefined variables. Index: index.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/index.html,v retrieving revision 1.12.6.2 retrieving revision 1.12.6.3 diff -u -r1.12.6.2 -r1.12.6.3 --- index.html 23 Aug 2004 13:07:15 -0000 1.12.6.2 +++ index.html 4 Sep 2004 20:44:29 -0000 1.12.6.3 @@ -24,7 +24,7 @@ echo translate("No bugs found"); } ?> - <?php if (count($queries)) { ?> + <?php if (isset($queries) && count($queries)) { ?> <br><br> <b><?php echo translate("Saved Queries") ?></b> <br> |