6 Sep
2002
6 Sep
'02
6:26 p.m.
On Fri, 6 Sep 2002, Roger Buck wrote:
REJECTED You do not have access to this portion of Koha
I _do_ have a script that allows you to set the flags for a given borrower... however there was a bug in sub getpatroninformation that broke it. I've updated the Circ2.pm file in CVS to fix this problem. The flag editing can be reached by going to the member's details page and clicking on the "Modify User Flags" link right at the bottom. To fix the getpatroninformation subroutine you need to change line 145 of Circ2.pm ($intranetdir/modules/C4/Circulation/Circ2.pm) from: if ($flags & 2**$bit) { to: if ($borrower->{'flags'} & 2**$bit) { Steve.