@@ -, +, @@ does not have permission Added check for borrowers that stops the Statistics link being shown. This could be done through the css but that function currently appears to be broke -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 | 5 ++++- 1 file changed, 4 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 @@ -78,8 +78,11 @@ [% END %] [% IF ( EnhancedMessagingPreferences ) %] [% IF ( sentnotices ) %]
  • [% ELSE %]
  • [% END %]Notices
  • + [% END %] + + [% IF ( CAN_user_borrowers ) %] + [% IF ( statisticsview ) %]
  • [% ELSE %]
  • [% END %]Statistics
  • [% END %] - [% IF ( statisticsview ) %]
  • [% ELSE %]
  • [% END %]Statistics
  • [% IF EnableBorrowerFiles %] [% IF ( borrower_files ) %]
  • [% ELSE %]
  • [% END %]Files
  • [% END %] --