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

(-)a/C4/Circulation.pm (-4 / +2 lines)
Lines 2972-2980 sub AddRenewal { Link Here
2972
            $branch = 'OPACRenew';
2972
            $branch = 'OPACRenew';
2973
        }
2973
        }
2974
    }
2974
    }
2975
    else {
2975
    elsif ( !$branch && C4::Context->userenv ) {
2976
        $branch =
2976
        $branch = C4::Context->userenv->{branch};
2977
          C4::Context->userenv ? C4::Context->userenv->{branch} : $branch;
2978
    }
2977
    }
2979
2978
2980
    # Add the renewal to stats
2979
    # Add the renewal to stats
2981
- 

Return to bug 23165