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

(-)a/opac/opac-suggestions.pl (-3 / +2 lines)
Lines 254-260 my @mandatoryfields; Link Here
254
    }
254
    }
255
    if ( $biblionumber ) {
255
    if ( $biblionumber ) {
256
        my $biblio = Koha::Biblios->find($biblionumber);
256
        my $biblio = Koha::Biblios->find($biblionumber);
257
        $template->param(
257
        $suggestion = {
258
            biblionumber    => $biblio->biblionumber,
258
            biblionumber    => $biblio->biblionumber,
259
            title           => $biblio->title,
259
            title           => $biblio->title,
260
            author          => $biblio->author,
260
            author          => $biblio->author,
Lines 263-269 my @mandatoryfields; Link Here
263
            publishercode   => $biblio->biblioitem->publishercode,
263
            publishercode   => $biblio->biblioitem->publishercode,
264
            collectiontitle => $biblio->biblioitem->collectiontitle,
264
            collectiontitle => $biblio->biblioitem->collectiontitle,
265
            place           => $biblio->biblioitem->place,
265
            place           => $biblio->biblioitem->place,
266
        );
266
        };
267
    }
267
    }
268
}
268
}
269
269
270
- 

Return to bug 29416