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

(-)a/acqui/supplier.pl (-1 / +2 lines)
Lines 42-47 To know the bookseller this script has to display details. Link Here
42
42
43
use strict;
43
use strict;
44
use warnings;
44
use warnings;
45
use HTML::Entities;
45
use C4::Auth;
46
use C4::Auth;
46
use C4::Contract;
47
use C4::Contract;
47
use C4::Biblio;
48
use C4::Biblio;
Lines 66-71 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
66
    }
67
    }
67
);
68
);
68
my $booksellerid       = $query->param('booksellerid');
69
my $booksellerid       = $query->param('booksellerid');
70
$booksellerid          = HTML::Entities::encode($booksellerid);
69
my $supplier;
71
my $supplier;
70
if ($booksellerid) {
72
if ($booksellerid) {
71
    $supplier = Koha::Acquisition::Booksellers->find( $booksellerid );
73
    $supplier = Koha::Acquisition::Booksellers->find( $booksellerid );
72
- 

Return to bug 19089