summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-12-11 18:12:33 +0000
committerthomascube <thomas@roundcube.net>2011-12-11 18:12:33 +0000
commitce86f0f14f0cf1bf73f4f6045aea1fa00db432aa (patch)
tree351b0438991f9c512957c9269b01fc95c6b670c8 /program/js
parent98c2d69acf3001379dc008dc52b77b618c291140 (diff)
Make string for unread count configureable by skin; add file type classes to attachments list
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index b6c7d1dfd..da1e241ec 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -5624,7 +5624,7 @@ function rcube_webmail()
}
if (mycount && text_obj.length)
- text_obj.html(' ('+mycount+')');
+ text_obj.html(this.env.unreadwrap.replace(/%[sd]/, mycount));
else if (text_obj.length)
text_obj.remove();