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

(-)a/tools/manage-marc-import.pl (-2 / +1 lines)
Lines 62-68 my %cookies = parse CGI::Cookie($cookie); Link Here
62
our $sessionID = $cookies{'CGISESSID'}->value;
62
our $sessionID = $cookies{'CGISESSID'}->value;
63
our $dbh = C4::Context->dbh;
63
our $dbh = C4::Context->dbh;
64
64
65
my $frameworks = Koha::BiblioFrameworks->search({ tagfield => { 'not' => undef } }, { join => 'marc_tag_structure', group_by=>'frameworkcode',order_by => ['frameworktext'] });
65
my $frameworks = Koha::BiblioFrameworks->search({ tagfield => { 'not' => undef } }, { join => 'marc_tag_structure', distinct => 'frameworkcode', order_by => ['frameworktext'] });
66
$template->param( frameworks => $frameworks );
66
$template->param( frameworks => $frameworks );
67
67
68
if ($op eq "create_labels") {
68
if ($op eq "create_labels") {
69
- 

Return to bug 20180