diff options
author | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-14 16:43:42 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2010-11-02 20:35:17 -0500 |
commit | 619cada8e315f58e1579c4173e98faa02eee1785 (patch) | |
tree | fa41170881b4dce68b2ed4cc5c0514db2d3e5ae3 | |
parent | ec6125bb25e7c8f24527b83c6f88d55c8a2f1a78 (diff) | |
download | bcfg2-619cada8e315f58e1579c4173e98faa02eee1785.tar.gz bcfg2-619cada8e315f58e1579c4173e98faa02eee1785.tar.bz2 bcfg2-619cada8e315f58e1579c4173e98faa02eee1785.zip |
web reports: fix quotes in base-timeview.html
-rw-r--r-- | src/lib/Server/Reports/reports/templates/base-timeview.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Reports/reports/templates/base-timeview.html b/src/lib/Server/Reports/reports/templates/base-timeview.html index d0617cde7..842de36f0 100644 --- a/src/lib/Server/Reports/reports/templates/base-timeview.html +++ b/src/lib/Server/Reports/reports/templates/base-timeview.html @@ -6,7 +6,7 @@ function showCalendar() { var cal = new CalendarPopup("calendar_div"); cal.showYearNavigation(); cal.select(document.forms['cal_form'].cal_date,'cal_link', - 'yyyy/MM/dd' {% if timestamp %}, '{{ timestamp|date:'Y/m/d' }}'{% endif %} ); + 'yyyy/MM/dd' {% if timestamp %}, '{{ timestamp|date:"Y/m/d" }}'{% endif %} ); return false; } function bcfg2_check_date() { |