|
Lines 188-194
if (scalar keys %params > 0) {
Link Here
|
| 188 |
if (C4::Context->preference("marcflavour") ne "UNIMARC" && $sortby eq 'publicationyear') { |
188 |
if (C4::Context->preference("marcflavour") ne "UNIMARC" && $sortby eq 'publicationyear') { |
| 189 |
$sortby = 'copyrightdate'; |
189 |
$sortby = 'copyrightdate'; |
| 190 |
} |
190 |
} |
| 191 |
warn $sortby; |
|
|
| 192 |
my $search_params = { |
191 |
my $search_params = { |
| 193 |
rows => $cgi->param('rows') // 20, |
192 |
rows => $cgi->param('rows') // 20, |
| 194 |
page => $cgi->param('page') || 1, |
193 |
page => $cgi->param('page') || 1, |
| 195 |
- |
|
|