https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26346 Alex Buckley <alexbuckley@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |ASSIGNED --- Comment #50 from Alex Buckley <alexbuckley@catalyst.net.nz> --- (In reply to Marcel de Rooy from comment #49)
Good to see these changes. We still need some attention here:
sub get_some_shelves { my ( $self, $params ) = @_; my $borrowernumber = $params->{borrowernumber} || 0; my $category = $params->{category} || 1; my $add_allowed = $params->{add_allowed};
my @conditions; my $patron = Koha::Patrons->find( $borrowernumber ) or return 0; if ( $add_allowed ) {
At this point we prevented a crash but now the side-effect is that we wont see any public lists at all when not logged in..
Thanks Marcel! Working on this now. -- You are receiving this mail because: You are watching all bug changes.