3 Jun
2013
3 Jun
'13
6:09 p.m.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10277 --- Comment #11 from Galen Charlton <gmcharlt@gmail.com> --- (In reply to comment #10)
my $userenv = C4::Context->userenv or carp(...); return C4::Context->userenv->{flags} % 2 == 1;
It saves one C4::Context->userenv call.
Does it? Did you mean my $userenv = C4::Context->userenv or carp(...); return $userenv->{flags} % 2 == 1; -- You are receiving this mail because: You are watching all bug changes.