From e9d80bf9cc8db1d2ac6f002a51d1331320d5341b Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 9 Oct 2006 11:20:07 +0000 Subject: [PATCH] Highlight sticky entries in admin interface --- include/admin/entries.inc.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/admin/entries.inc.php b/include/admin/entries.inc.php index db03e8e..80bfd4b 100644 --- a/include/admin/entries.inc.php +++ b/include/admin/entries.inc.php @@ -223,6 +223,10 @@ function serendipity_drawList() { $entry_pre = ''; } + if (serendipity_db_bool($entry['properties']['ep_is_sticky'])) { + $entry_pre .= ' ' . STICKY_POSTINGS . ': '; + } + if (serendipity_db_bool($entry['isdraft'])) { $entry_pre .= ' ' . DRAFT . ': '; } -- 2.39.5