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

(-)a/opac/opac-memberentry.pl (-1 / +5 lines)
Lines 64-69 unless ( C4::Context->preference('PatronSelfRegistration') || $borrowernumber ) Link Here
64
}
64
}
65
65
66
my $action = $cgi->param('action') || q{};
66
my $action = $cgi->param('action') || q{};
67
if ( $borrowernumber && ( $action eq 'create' || $action eq 'new' ) ) {
68
    print $cgi->redirect("/cgi-bin/koha/opac-main.pl");
69
    exit;
70
}
71
67
if ( $action eq q{} ) {
72
if ( $action eq q{} ) {
68
    if ($borrowernumber) {
73
    if ($borrowernumber) {
69
        $action = 'edit';
74
        $action = 'edit';
70
- 

Return to bug 28947