Lines 72-77
sub _get_chunk {
Link Here
|
72 |
|
72 |
|
73 |
if ( $options{'class'} && $options{'class'} eq 'password' ) { |
73 |
if ( $options{'class'} && $options{'class'} eq 'password' ) { |
74 |
$chunk->{'input_type'} = 'password'; |
74 |
$chunk->{'input_type'} = 'password'; |
|
|
75 |
} elsif ( $options{'class'} && $options{'class'} eq 'email' ) { |
76 |
$chunk->{'input_type'} = 'email'; |
75 |
} elsif ( $options{'class'} && $options{'class'} eq 'date' ) { |
77 |
} elsif ( $options{'class'} && $options{'class'} eq 'date' ) { |
76 |
$chunk->{'dateinput'} = 1; |
78 |
$chunk->{'dateinput'} = 1; |
77 |
} elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) { |
79 |
} elsif ( $options{'type'} && ( $options{'type'} eq 'opac-languages' || $options{'type'} eq 'staff-languages' ) ) { |
78 |
- |
|
|