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

(-)a/authorities/authorities-home.pl (-1 / +4 lines)
Lines 201-206 if ( $op eq "do_search" ) { Link Here
201
        }
201
        }
202
    }
202
    }
203
203
204
    if( $pending_deletion_authid && $results ) {
205
        $results = [ grep { $_->{authid} != $pending_deletion_authid } @$results ];
206
    }
207
204
    $template->param( result => $results ) if $results;
208
    $template->param( result => $results ) if $results;
205
209
206
    my $max_result_window = $searcher->max_result_window;
210
    my $max_result_window = $searcher->max_result_window;
Lines 241-247 my $servers = Koha::Z3950Servers->search( Link Here
241
$template->param(
245
$template->param(
242
    servers => $servers,
246
    servers => $servers,
243
    authority_types => $authority_types,
247
    authority_types => $authority_types,
244
    pending_deletion_authid => $pending_deletion_authid,
245
    op            => $op,
248
    op            => $op,
246
);
249
);
247
250
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt (-2 lines)
Lines 73-79 Link Here
73
            [% ELSE %]
73
            [% ELSE %]
74
              [% PROCESS authresult summary=resul.summary authid=resul.authid %]
74
              [% PROCESS authresult summary=resul.summary authid=resul.authid %]
75
            [% END %]
75
            [% END %]
76
            [% IF pending_deletion_authid == resul.authid %]<span style="color: red;">Pending deletion</span>[% END %]
77
          </td>
76
          </td>
78
          <td>[% resul.authtype | html %]</td>
77
          <td>[% resul.authtype | html %]</td>
79
        [% UNLESS ( resul.isEDITORS ) %]
78
        [% UNLESS ( resul.isEDITORS ) %]
80
- 

Return to bug 33247