From c7e19ee643730b06dc0f0ab2665c31f65b8e86e4 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 8 Jul 2013 14:37:03 -0400 Subject: [PATCH] Bug 10553: make public lists available on OPAC login page If you are not logged in to the OPAC, looking at the login page, and you click the Lists button to see public lists it says there are none. This patch corrects Auth.pm so that it loads the list of public lists in this situation. To test you must have at least one public list. Make sure you are logged out of the OPAC and visit the login page (/cgi-bin/koha/opac-user.pl). Clicking the "Lists" button should show you a list of public shelves. Signed-off-by: Liz Rea works as described, and list button is not shown when opacpublic is disabled. Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton (cherry picked from commit 651f810f68f82f4aac254c4a78bb6a4517dcb558) Signed-off-by: Tomas Cohen Arazi --- C4/Auth.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/C4/Auth.pm b/C4/Auth.pm index 367b828538..d16d3401a2 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1021,6 +1021,14 @@ sub checkauth { $template->param( OpacPublic => C4::Context->preference("OpacPublic")); $template->param( loginprompt => 1 ) unless $info{'nopermission'}; + if($type eq 'opac'){ + my ($total, $pubshelves) = C4::VirtualShelves::GetSomeShelfNames(undef, 'MASTHEAD'); + $template->param( + pubshelves => $total->{pubtotal}, + pubshelvesloop => $pubshelves, + ); + } + if ($cas) { # Is authentication against multiple CAS servers enabled? -- 2.39.2