1
0

Fix admin entry list when no entries exist or meet filter criteria.

This commit is contained in:
Don Chambers
2007-09-11 12:48:15 +00:00
parent 9e16c0b1a4
commit 5e3f9bac85
2 changed files with 11 additions and 1 deletions

View File

@ -340,7 +340,13 @@ function serendipity_drawList() {
} else {
// We've got nothing
?>
<div align="center">- <?php echo NO_ENTRIES_TO_PRINT ?> -</div>
<tr>
<td align="center" class="serendipityAdminMsgNote">
<img style="width: 22px; height: 22px; border: 0px; padding-right: 4px; vertical-align: middle" src="<?php echo serendipity_getTemplateFile('admin/img/admin_msg_note.png'); ?>" alt="" />
<?php echo NO_ENTRIES_TO_PRINT ?>
</td>
</tr>
</table>
<?php
}
?>