https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18348

--- Comment #5 from Katrin Fischer <[email protected]> ---
It only seems to affect the items table in the OPAC? Maybe.

opac/opac-user.pl:

use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';

my $show_barcode = Koha::Patron::Attribute::Types->search( # FIXME we should
not need this search
    { code => ATTRIBUTE_SHOW_BARCODE } )->count;
if ($show_barcode) {
    my $patron_show_barcode =
$patron->get_extended_attribute(ATTRIBUTE_SHOW_BARCODE);
    undef $show_barcode if $patron_show_barcode and not
$patron_show_barcode->attribute;
}
$template->param( show_barcode => 1 ) if $show_barcode;

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to