@@ -, +, @@ OpacAllowPublicListCreation is disabled - With the OpacAllowPublicListCreation system preference enabled, go to the OPAC and view the lists page. - If you are logged in you should see a "New list" link under both the "Your lists" tab and the "Public lists" tab. - If you are not logged in you should see "Log in to create a new list" on both pages. - View the page with OpacAllowPublicListCreation disabled. - If you are logged in you should see a "New list" link under only the "Your lists" tab. - If you are not logged in you should see the "Log in" link only under the "Your lists" tab. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 2 ++ 1 file changed, 2 insertions(+) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt @@ -662,6 +662,7 @@
[% END %] + [% IF category == PRIVATE || Koha.Preference('OpacAllowPublicListCreation') %] [% IF loggedinusername %]
New list
[% ELSE %] @@ -669,6 +670,7 @@
Log in to create a new list
[% END %] [% END %] + [% END %] [% IF shelves.count %] --