View | Details | Raw Unified | Return to bug 18936
Collapse All | Expand All

(-)a/opac/opac-shelves.pl (-1 / +1 lines)
Lines 281-287 if ( $op eq 'view' ) { Link Here
281
281
282
            my $art_req_itypes;
282
            my $art_req_itypes;
283
            if( C4::Context->preference('ArticleRequests') ) {
283
            if( C4::Context->preference('ArticleRequests') ) {
284
                $art_req_itypes = Koha::IssuingRules->guess_article_requestable_itemtypes({ $patron ? ( categorycode => $patron->categorycode ) : () });
284
                $art_req_itypes = Koha::CirculationRules->guess_article_requestable_itemtypes({ $patron ? ( categorycode => $patron->categorycode ) : () });
285
            }
285
            }
286
286
287
            my @items;
287
            my @items;
(-)a/opac/opac-tags.pl (-2 / +2 lines)
Lines 48-53 use C4::XSLT; Link Here
48
use Data::Dumper;
48
use Data::Dumper;
49
49
50
use Koha::Biblios;
50
use Koha::Biblios;
51
use Koha::CirculationRules;
51
52
52
my %newtags = ();
53
my %newtags = ();
53
my @deltags = ();
54
my @deltags = ();
Lines 239-245 if ($loggedinuser) { Link Here
239
240
240
    my $art_req_itypes;
241
    my $art_req_itypes;
241
    if( C4::Context->preference('ArticleRequests') ) {
242
    if( C4::Context->preference('ArticleRequests') ) {
242
        $art_req_itypes = Koha::IssuingRules->guess_article_requestable_itemtypes({ $patron ? ( categorycode => $patron->categorycode ) : () });
243
        $art_req_itypes = Koha::CirculationRules->guess_article_requestable_itemtypes({ $patron ? ( categorycode => $patron->categorycode ) : () });
243
    }
244
    }
244
245
245
    # get biblionumbers stored in the cart
246
    # get biblionumbers stored in the cart
246
- 

Return to bug 18936