Bug 33155: Fix category and library filters in patron search header
Caused by
commit f1925cf89d
Bug 7380: Rename filter to avoid confusion
[% IF categorycode %]
- $("#categorycode_filter").val("[% categorycode %]");
+ $("#categorycode_filter").val("[% categorycode_filter %]");
[% END %]
[% IF branchcode %]
- $("#branchcode_filter").val("[% branchcode %]");
+ $("#branchcode_filter").val("[% branchcode_filter %]");
[% END %]
Forgot to rename the vars in the IF statements
Test plan:
Go to the Koha mainpage
Click "Search patrons" in the headers
Open the filters
Select something for library and category, search
=> The values must be picked for the patron search
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
96f5f80bdd
commit
79e4aabc31
1 changed files with 2 additions and 2 deletions
|
@ -279,10 +279,10 @@
|
|||
[% IF searchtype %]
|
||||
$("#searchtype_filter").val("[% searchtype | html %]");
|
||||
[% END %]
|
||||
[% IF categorycode %]
|
||||
[% IF categorycode_filter %]
|
||||
$("#categorycode_filter").val("[% categorycode_filter | html %]");
|
||||
[% END %]
|
||||
[% IF branchcode %]
|
||||
[% IF branchcode_filter %]
|
||||
$("#branchcode_filter").val("[% branchcode_filter | html %]");
|
||||
[% END %]
|
||||
|
||||
|
|
Loading…
Reference in a new issue