@@ -, +, @@ - With a staff user with borrowers permission, verify the change password button is shown for a normal patron. - With a staff user without borrowers permission, verify the change password button does not appear. --- .../prog/en/includes/circ-toolbar.inc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc @@ -100,7 +100,7 @@ function export_barcodes() { [% IF ( adultborrower ) %]new YAHOO.widget.Button("addchild");[% END %] new YAHOO.widget.Button("editpatron"); new YAHOO.widget.Button("addnote"); - [% IF CAN_user_staffaccess %] new YAHOO.widget.Button("changepassword"); [% END %] + [% IF CAN_user_borrowers %] new YAHOO.widget.Button("changepassword"); [% END %] new YAHOO.widget.Button("duplicate"); new YAHOO.widget.Button("printslip"); new YAHOO.widget.Button("printpage"); @@ -126,7 +126,7 @@ function export_barcodes() { [% END %] [% IF ( CAN_user_borrowers ) %] [% IF ( adultborrower AND activeBorrowerRelationship ) %]
  • Add child
  • [% END %] - [% IF ( CAN_user_staffaccess ) %]
  • Change Password
  • [% END %] + [% IF ( CAN_user_borrowers ) %]
  • Change Password
  • [% END %] [% END %]
  • Duplicate
  • Print Page
  • --