diff options
Diffstat (limited to 'interface/js')
-rw-r--r-- | interface/js/app/history.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 7677550bd..4a8cddb0c 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -137,7 +137,8 @@ define(["jquery", "footable", "humanize"], return (l > rcpt_lim) ? " … (" + l + ")" : ""; } function format_rcpt(smtp, mime) { - var full = shrt = ""; + var full = ""; + var shrt = ""; if (smtp) { full = "[" + item.rcpt_smtp.join(", ") + "] "; shrt = "[" + item.rcpt_smtp.slice(0, rcpt_lim).join(",​") + more("rcpt_smtp") + "]"; |