Lines 131-137
if ( $op eq 'connectDuplicate' ) {
Link Here
|
131 |
my $suggestions = [ Koha::Suggestions->search_limited( |
131 |
my $suggestions = [ Koha::Suggestions->search_limited( |
132 |
{ |
132 |
{ |
133 |
( $author ? ( author => $author ) : () ), |
133 |
( $author ? ( author => $author ) : () ), |
134 |
( $title ? ( title => $title ) : () ), |
134 |
( $title ? ( 'me.title' => $title ) : () ), |
135 |
( $publishercode ? ( publishercode => $publishercode ) : () ), |
135 |
( $publishercode ? ( publishercode => $publishercode ) : () ), |
136 |
STATUS => 'ACCEPTED' |
136 |
STATUS => 'ACCEPTED' |
137 |
}, |
137 |
}, |
138 |
- |
|
|