summaryrefslogtreecommitdiff
path: root/httemplate/search
diff options
context:
space:
mode:
authorivan <ivan>2010-03-08 10:57:18 +0000
committerivan <ivan>2010-03-08 10:57:18 +0000
commitdc404e7519cf0ec3a0024a662c5e0c5566f9a194 (patch)
tree4f803ba340549798101094b822bd938eb70596cb /httemplate/search
parent3402ff329fde97d6ac96723b5c2a4ed46ed2ce25 (diff)
proper use of date_format config for international date formats, RT#7009
Diffstat (limited to 'httemplate/search')
-rw-r--r--httemplate/search/report_prepaid_income.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/search/report_prepaid_income.html b/httemplate/search/report_prepaid_income.html
index d707bd81b..04801beee 100644
--- a/httemplate/search/report_prepaid_income.html
+++ b/httemplate/search/report_prepaid_income.html
@@ -44,7 +44,7 @@
<SCRIPT TYPE="text/javascript">
Calendar.setup({
inputField: "date_text",
- ifFormat: "%m/%d/%Y",
+ ifFormat: "<% $date_format %>",
button: "date_button",
align: "BR"
});
@@ -58,4 +58,7 @@
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
+my $conf = new FS::Conf;
+my $date_format = $conf->config('date_format') || '%m/%d/%Y';
+
</%init>