@@ -, +, @@ when user does not have permission Added check for borrowers that stops the Circulation History link being shown. This could be done through the css but that function currently appears to be broken. -Search for a patron with an account that does not have the 'borrowers' permission -Change the accounts permissions so they have the 'borrowers' permission --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -70,7 +70,8 @@ [% IF ( finesview ) %]
  • [% ELSE %]
  • [% END %]Fines
  • [% END %] [% IF ( RoutingSerials ) %][% IF ( routinglistview ) %]
  • [% ELSE %]
  • [% END %]Routing lists
  • [% END %] - [% IF ( intranetreadinghistory ) %] + + [% IF ( intranetreadinghistory && CAN_user_borrowers ) %] [% IF ( readingrecordview ) %]
  • [% ELSE %]
  • [% END %]Circulation history
  • [% END %] [% IF ( CAN_user_parameters ) %] --