From 0d935c468a2f8d878178d30dda0e66c1dde059b9 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Mon, 27 Oct 2025 11:56:58 +0100 Subject: [PATCH] Bug 40903: OPAC advanced search should not apply a limit of the logged-in library by default This is caused by Bug 36742. It exists in main but starts in 24.11. The OPAC advanced search now automatically applies a limit to the 'Location and availability' section using the patron's logged in library, even if there are multiple libraries in the system. 1) Go to OPAC 2) Authenticate with a user 3) Go to advanced search 4) Check there is no library selected in 'Location and availability' 5) Select a library and submit 6) Clik on 'Return to the last advanced search' 7) Check the library is selected in 'Location and availability' --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt index a4651d0a4e..4f74a1250a 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt @@ -32,7 +32,7 @@ [% INCLUDE 'bodytag.inc' bodyid='advsearch' bodyclass='scrollto' %] [% INCLUDE 'masthead.inc' %] -[% SET AllPublicBranches = Branches.all( search_params => { public => 1 } ) %] +[% SET AllPublicBranches = Branches.all( search_params => { public => 1 }, do_not_select_my_library => 1) %]
-- 2.43.0