Bug 11159: fix small typo in catalogue/results.tt
In catalogue/results.tt, there is a small HTML error line 377 : [% ELSE %]<option value"au,phr">Author</option>[% END %] The = is missing Test plan : - In intranet, test go to advanced search - Click on [More options] - Enter a term, check "Scan indexes" and click on "Search" - Look at HTML code of select "Indexed in" => option "Author" is correct : <option value="au,phr">Author</option> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
87470f394a
commit
31e9c90e2b
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ var holdForPatron = function () {
|
|||
[% IF ( ms_ticommaphr ) %]<option selected="selected" value="ti,phr">Title phrase</option>
|
||||
[% ELSE %]<option value="ti,phr">Title phrase</option>[% END %]
|
||||
[% IF ( ms_aucommaphr ) %]<option selected="selected" value="au,phr">Author</option>
|
||||
[% ELSE %]<option value"au,phr">Author</option>[% END %]
|
||||
[% ELSE %]<option value="au,phr">Author</option>[% END %]
|
||||
[% IF ( ms_su ) %]<option selected="selected" value="su">Subject</option>
|
||||
[% ELSE %]<option value="su">Subject</option>[% END %]
|
||||
[% IF ( ms_sucommaphr ) %]<option selected="selected" value="su,phr">Subject phrase</option>
|
||||
|
|
Loading…
Reference in a new issue