summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-18 13:09:59 +0400
committerAndrew Dolgov <[email protected]>2011-04-18 13:09:59 +0400
commitaaba22250fd497ddbf17a73ca187e13516411454 (patch)
tree47841c2ccea6259216de3eaa05201bd762755d55 /functions.js
parent361840203b217b03eca1839bfe11a172a5cccd40 (diff)
filter dialog: display parsed date when checking; fix Check it button not using Dijit control
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index ee92674eb..2a4268e8c 100644
--- a/functions.js
+++ b/functions.js
@@ -628,7 +628,7 @@ function filterDlgCheckDate() {
var reply = JSON.parse(transport.responseText);
if (reply['result'] == true) {
- alert(__("Date syntax appears to be correct."));
+ alert(__("Date syntax appears to be correct:") + " " + reply['date']);
return;
} else {
alert(__("Date syntax is incorrect."));