Lines 196-202
else {
Link Here
|
196 |
title2 => $recordObj2->authorized_heading, |
196 |
title2 => $recordObj2->authorized_heading, |
197 |
); |
197 |
); |
198 |
if ( $recordObj1->authtypecode ne $recordObj2->authtypecode ) { |
198 |
if ( $recordObj1->authtypecode ne $recordObj2->authtypecode ) { |
199 |
my $authority_types = Koha::Authority::Types->search( { authtypecode => { '!=' => '' } }, { order_by => ['authtypecode'] } ); |
199 |
my $authority_types = Koha::Authority::Types->search( { authtypecode => { '!=' => '' } }, { order_by => ['authtypetext'] } ); |
200 |
$template->param( |
200 |
$template->param( |
201 |
frameworkselect => $authority_types->unblessed, |
201 |
frameworkselect => $authority_types->unblessed, |
202 |
frameworkcode1 => $recordObj1->authtypecode, |
202 |
frameworkcode1 => $recordObj1->authtypecode, |
203 |
- |
|
|