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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 1272-1278 sub checkauth { Link Here
1272
        push @inputs, { name => $name, value => $_ } for @value;
1272
        push @inputs, { name => $name, value => $_ } for @value;
1273
    }
1273
    }
1274
1274
1275
    my $patron = Koha::Patrons->find({ userid => $q_userid }); # Not necessary logged in!
1275
    my $patron = Koha::Patrons->find({ userid => $q_userid }) if $q_userid; # Not necessary logged in!
1276
1276
1277
    my $LibraryNameTitle = C4::Context->preference("LibraryName");
1277
    my $LibraryNameTitle = C4::Context->preference("LibraryName");
1278
    $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
1278
    $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
1279
- 

Return to bug 29783