@@ -, +, @@ table --- C4/Serials.pm | 6 ++- .../prog/en/modules/serials/serials-home.tt | 36 ++++++++++++++----- 2 files changed, 30 insertions(+), 12 deletions(-) --- a/C4/Serials.pm +++ a/C4/Serials.pm @@ -613,8 +613,10 @@ sub GetSubscriptions { while ( my $line = $sth->fetchrow_hashref ) { if ( $previousbiblio eq $line->{biblionumber} ) { - $line->{title} = ""; - $line->{issn} = ""; + # Disabled for sorting and filtering on issn and title + # to work on serials-home.pl + #$line->{title} = ""; + #$line->{issn} = ""; } else { $previousbiblio = $line->{biblionumber}; $odd = -$odd; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tt @@ -1,18 +1,22 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Serials [% biblionumber %] + [% INCLUDE 'doc-head-close.inc' %] - + +[% INCLUDE 'datatables-strings.inc' %] + @@ -85,9 +89,21 @@ Serials updated : [% IF ( routing ) %] Routing list [% END %] -   +   +   + + + + + + + + + + + [% FOREACH subscription IN subscriptions %] [% UNLESS ( loop.odd ) %] --