diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-04-27 11:52:27 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-04-27 11:52:27 -0700 |
commit | 14b88b83f22a15b5abb5ba94328f213923a3bb95 (patch) | |
tree | 11868197d9c06467eb217d4d6fd4e713418c4321 /httemplate | |
parent | 2c4cf12af441dc22859e30c1474e279499edfa3a (diff) |
fix disabling of date fields on advanced package report, fallout from #17113
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/input-date-field.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/input-date-field.html b/httemplate/elements/input-date-field.html index 182efbb93..0e786cb46 100644 --- a/httemplate/elements/input-date-field.html +++ b/httemplate/elements/input-date-field.html @@ -6,7 +6,7 @@ % } <INPUT TYPE="text" NAME="<% $name %>" ID="<% $name %>_text" VALUE="<% $value %>"> -<IMG SRC="<%$fsurl%>images/calendar.png" ID="<% $name %>_button" STYLE="cursor: pointer" TITLE="<% mt('Select date') |h %>"> +<IMG SRC="<%$fsurl%>images/calendar.png" ID="<% $name %>_button" STYLE="cursor: pointer" TITLE="<% mt('Select date') |h %>"><IMG SRC="<%$fsurl%>images/calendar-disabled.png" ID="<% $name %>_disabled" STYLE="display:none"> <SCRIPT TYPE="text/javascript"> Calendar.setup({ |