@@ -, +, @@ - Apply patch - Verify that catalogue/moredetail.pm works as before (go to a biblio with items and click 'Items' in left hand menue) --- catalogue/moredetail.pl | 8 +--- .../prog/en/modules/catalogue/subject.tt | 46 -------------------- 2 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/subject.tt --- a/catalogue/moredetail.pl +++ a/catalogue/moredetail.pl @@ -30,7 +30,6 @@ use C4::Acquisition; use C4::Output; use C4::Auth; use C4::Serials; -use C4::Circulation; # to use itemissues use C4::Members; # to use GetMember use C4::Search; # enabled_staff_search_views use C4::Members qw/GetHideLostItemsPreference/; @@ -42,15 +41,10 @@ use Koha::Items; my $query=new CGI; -# FIXME subject is not exported to the template? -my $subject=$query->param('subject'); - # if its a subject we need to use the subject.tt my ($template, $loggedinuser, $cookie) = get_template_and_user( { - template_name => ( $subject - ? 'catalogue/subject.tt' - : 'catalogue/moredetail.tt'), + template_name => 'catalogue/moredetail.tt', query => $query, type => "intranet", authnotrequired => 0, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/subject.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/subject.tt @@ -1,46 +0,0 @@ -[% INCLUDE 'doc-head-open.inc' %] -Koha › Catalog › Subject search results -[% INCLUDE 'doc-head-close.inc' %] - - - -[% INCLUDE 'header.inc' %] -[% INCLUDE 'cat-search.inc' %] - - - -
- -
-
-
- -
- -

Subject search results

- -

Results [% startfrom %] through [% endat %] of [% numrecords %] records.

- - - - - -[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] - - - -[% END %] -
Subject headings
- [% SEARCH_RESULT.subject %] -
-

Previous records Next records

- -
- -
-
-
-[% INCLUDE 'cat-menu.inc' %] -
-
-[% INCLUDE 'intranet-bottom.inc' %] --