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

(-)a/circ/circulation.pl (+4 lines)
Lines 472-477 if ( $patron ) { Link Here
472
        $template->param( is_debarred=> 1 );
472
        $template->param( is_debarred=> 1 );
473
        $noissues = 1;
473
        $noissues = 1;
474
    }
474
    }
475
    if ( $patron->borrowernumber eq C4::Context->preference("AnonymousPatron") ) {
476
        $template->param( is_anonymous => 1 );
477
        $noissues = 1;
478
    }
475
    my $account = $patron->account;
479
    my $account = $patron->account;
476
    if( ( my $owing = $account->non_issues_charges ) > 0 ) {
480
    if( ( my $owing = $account->non_issues_charges ) > 0 ) {
477
        my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
481
        my $noissuescharge = C4::Context->preference("noissuescharge") || 5; # FIXME If noissuescharge == 0 then 5, why??
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +4 lines)
Lines 96-101 Link Here
96
                        <div class="dialog alert">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
96
                        <div class="dialog alert">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
97
                    [% END %]
97
                    [% END %]
98
98
99
                    [% IF is_anonymous %]
100
                        <div class="dialog alert">This is the anonymous patron, so circulation is disabled.</div>
101
                    [% END %]
102
99
                    [% IF ( NEEDSCONFIRMATION ) %]
103
                    [% IF ( NEEDSCONFIRMATION ) %]
100
                        <div id="circ_needsconfirmation" class="dialog alert audio-alert-action focus" tabindex="-1">
104
                        <div id="circ_needsconfirmation" class="dialog alert audio-alert-action focus" tabindex="-1">
101
                            [% IF CAN_user_circulate_force_checkout or ADDITIONAL_MATERIALS %]
105
                            [% IF CAN_user_circulate_force_checkout or ADDITIONAL_MATERIALS %]
102
- 

Return to bug 34910