|
From: Benjamin C. <bc...@us...> - 2002-07-29 12:41:50
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv14992/templates/default
Modified Files:
buglist.html
Log Message:
Hide the bug count if no bugs are found
Index: buglist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- buglist.html 18 May 2002 03:00:50 -0000 1.7
+++ buglist.html 29 Jul 2002 12:41:47 -0000 1.8
@@ -23,11 +23,13 @@
</td>
</tr>
{/section}
+ {if $smarty.section.bug.total}
<tr>
<td colspan="{$smarty.section.col.loop}" align="center">
<br>
- {$first} - {$last} of {$total}<br>[ {$pages} ]<!-- <a href="bugs.php?page=all">Show all</a>-->
- <br>
+ {$first} - {$last} of {$total}<br>[ {$pages} ]<!-- <a href="bugs.php?page=all">Show all</a>-->
+ <br>
</td>
</tr>
+ {/if}
</table>
|