This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new dca375f update var name, is a const now
dca375f is described below
commit dca375f44cddb55997c7d2ce3d7b2838720f095a
Author: Daniel Gruno <[email protected]>
AuthorDate: Wed Nov 17 18:37:27 2021 +0100
update var name, is a const now
---
webui/js/source/listview-header.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/webui/js/source/listview-header.js
b/webui/js/source/listview-header.js
index bc644fe..9e278ec 100644
--- a/webui/js/source/listview-header.js
+++ b/webui/js/source/listview-header.js
@@ -34,7 +34,7 @@ function listview_header(state, json) {
if (current_listmode == 'threaded') blobs = json.thread_struct;
if (current_year && current_month) {
- list_title += ", %s %u".format(months[current_month - 1],
current_year);
+ list_title += ", %s %u".format(MONTHS[current_month - 1],
current_year);
} else {
list_title += ", past month";
}
@@ -352,4 +352,4 @@ window.addEventListener('orientationchange', function() {
listview_header(prev_listview_state, prev_listview_json);
}
}, 100);
-}, false);
\ No newline at end of file
+}, false);