Fix for Bug 4963, sys prefs need date hints and/or picker
This patch adds the standard date format hint used elsewhere in the interface. Signed-off-by: Galen Charlton <gmcharlt@gmail.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
321eed9833
commit
51405bcce4
2 changed files with 3 additions and 1 deletions
|
@ -63,6 +63,8 @@ sub _get_chunk {
|
|||
|
||||
if ( $options{'class'} && $options{'class'} eq 'password' ) {
|
||||
$chunk->{'input_type'} = 'password';
|
||||
} elsif ( $options{'class'} && $options{'class'} eq 'date' ) {
|
||||
$chunk->{'dateinput'} = 1;
|
||||
} elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) {
|
||||
my $current_languages = { map { +$_, 1 } split( /\s*,\s*/, $value ) };
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
<!-- TMPL_IF NAME="type_text" -->
|
||||
<!-- TMPL_VAR NAME="contents" -->
|
||||
<!-- TMPL_ELSIF NAME="type_input" -->
|
||||
<input type="<!-- TMPL_VAR NAME="input_type" DEFAULT="text" -->" name="pref_<!-- TMPL_VAR NAME="name" -->" id="pref_<!-- TMPL_VAR NAME="name" -->" class="preference preference-<!-- TMPL_VAR NAME="class" DEFAULT="short" -->" value="<!-- TMPL_VAR NAME="value" -->" autocomplete="off" />
|
||||
<input type="<!-- TMPL_VAR NAME="input_type" DEFAULT="text" -->" name="pref_<!-- TMPL_VAR NAME="name" -->" id="pref_<!-- TMPL_VAR NAME="name" -->" class="preference preference-<!-- TMPL_VAR NAME="class" DEFAULT="short" -->" value="<!-- TMPL_VAR NAME="value" -->" autocomplete="off" /> <!-- TMPL_IF NAME="dateinput" --><span class="hint"><!-- TMPL_INCLUDE NAME="date-format.inc" --></span><!-- /TMPL_IF -->
|
||||
<!-- TMPL_ELSIF NAME="type_select" -->
|
||||
<select name="pref_<!-- TMPL_VAR NAME="name" -->" id="pref_<!-- TMPL_VAR NAME="name" -->" class="preference preference-<!-- TMPL_VAR NAME="class" DEFAULT="choice" -->">
|
||||
<!-- TMPL_LOOP NAME="CHOICES" -->
|
||||
|
|
Loading…
Reference in a new issue