From: garvinhicking Date: Mon, 9 Oct 2006 11:20:07 +0000 (+0000) Subject: Highlight sticky entries in admin interface X-Git-Tag: 1.1~78 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e9d80bf9cc8db1d2ac6f002a51d1331320d5341b;p=s9y.git Highlight sticky entries in admin interface --- 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 . ': '; }