Fix admin entry list when no entries exist or meet filter criteria.
This commit is contained in:
@ -41,6 +41,10 @@ Version 1.3 ()
|
|||||||
|
|
||||||
Version 1.2.1 ()
|
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
|
* Bulletproof template can now include custom user stylesheets
|
||||||
(*_style.css) in the dropdown of a colorset. (garvinhicking)
|
(*_style.css) in the dropdown of a colorset. (garvinhicking)
|
||||||
|
@ -340,7 +340,13 @@ function serendipity_drawList() {
|
|||||||
} else {
|
} else {
|
||||||
// We've got nothing
|
// 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
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user