Inbox count: remove feature flag

This commit is contained in:
Chad Birch
2015-02-17 18:31:19 -07:00
parent 18e922f8b2
commit 2c8995603a

View File

@@ -87,7 +87,7 @@
%if c.have_messages:
${plain_link(_("messages"), path="/message/unread/", title=_("new mail!"), _class="havemail", _sr_path=False, _id="mail")}
%if c.user.inbox_count > 0 and feature.is_enabled('show_inbox_count'):
%if c.user.inbox_count > 0:
${plain_link(c.user.inbox_count, path="/message/unread/", _class="message-count", _sr_path=False)}
%endif
%else: