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 9a268bac61
commit a3448afb5b
2 changed files with 11 additions and 1 deletions

View File

@ -41,7 +41,11 @@ Version 1.3 ()
Version 1.2.1 ()
------------------------------------------------------------------------
* Fix admin entry list when no entries exist or meet filter
criteria. (Don Chambers)
* Fix PHP notice about session_start()
* Bulletproof template can now include custom user stylesheets
(*_style.css) in the dropdown of a colorset. (garvinhicking)

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
}
?>