From a9868b1c93e9b7fe77c52f1ef52a28206858f563 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 21 Nov 2013 08:50:24 -0500 Subject: [PATCH] Fix the Sieve filters editor with new mail flags --- UI/Templates/PreferencesUI/UIxFilterEditor.wox | 2 +- UI/WebServerResources/UIxFilterEditor.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UI/Templates/PreferencesUI/UIxFilterEditor.wox b/UI/Templates/PreferencesUI/UIxFilterEditor.wox index 05d6a89f3..c5f434e61 100644 --- a/UI/Templates/PreferencesUI/UIxFilterEditor.wox +++ b/UI/Templates/PreferencesUI/UIxFilterEditor.wox @@ -13,7 +13,7 @@ >
diff --git a/UI/WebServerResources/UIxFilterEditor.js b/UI/WebServerResources/UIxFilterEditor.js index c56d4660b..cfa8c3b38 100644 --- a/UI/WebServerResources/UIxFilterEditor.js +++ b/UI/WebServerResources/UIxFilterEditor.js @@ -92,8 +92,8 @@ function setupConstants() { "not_junk": _("Not Junk") }; - for (var name in labels) { - flagLabels[name] = _( labels[name][0] ); + for (var name in mailTags) { + flagLabels[name] = _( mailTags[name][0] ); } }