From: Janusz Kaczmarek <[email protected]> [2011.06.05] I confirm the solution. On my test UNIMARC installation, I haven't an error 500 but I have a wrong result pages navigation bar which doesn't limit search result on the selected authority type.
Signed-off-by: Frédéric Demians <[email protected]> --- .../modules/authorities/searchresultlist-auth.tt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt index cda1191..ba22e9c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt @@ -31,7 +31,7 @@ function jumpfull(page) [% IF ( number.highlight ) %] [% number.number %] [% ELSE %] - <a href="auth_finder.pl?startfrom=[% number.startfrom %]&authtypecode=[% number.authtypecode %][% FOREACH searchdat IN number.searchdata %]&[% searchdat.term %]=[% searchdat.val %][% END %]&op=do_search&type=intranet&index=[% number.index %]&tagid=[% number.tagid %]&orderby=[% number.orderby %]"> + <a href="auth_finder.pl?startfrom=[% number.startfrom %]&authtypecode=[% authtypecode %][% FOREACH searchdat IN number.searchdata %]&[% searchdat.term %]=[% searchdat.val %][% END %]&op=do_search&type=intranet&index=[% index %]&tagid=[% tagid %]&orderby=[% orderby %]"> [% number.number %]</a> [% END %] [% END %] @@ -72,7 +72,7 @@ function jumpfull(page) <td> [% IF ( resul.repets ) %] [% FOREACH repet IN resul.repets %] - <a href="javascript:jumpfull('blinddetail-biblio-search.pl?authid=[% repet.authid %]&index=[% repet.index %]&repet=[% repet.repet %]')" title="[% repet.value %]">[% repet.repet %]</a> + <a href="javascript:jumpfull('blinddetail-biblio-search.pl?authid=[% resul.authid %]&index=[% repet.index %]&repet=[% repet.repet %]')" title="[% repet.value %]">[% repet.repet %]</a> [% END %] [% ELSE %] <a href="javascript:jumpfull('blinddetail-biblio-search.pl?authid=[% resul.authid %]&index=[% index %]')">choose</a> @@ -94,7 +94,7 @@ function jumpfull(page) [% IF ( number.highlight ) %] [% number.number %] [% ELSE %] - <a href="auth_finder.pl?startfrom=[% number.startfrom %]&authtypecode=[% number.authtypecode %][% FOREACH searchdat IN number.searchdata %]&[% searchdat.term %]=[% searchdat.val %][% END %]&op=do_search&type=intranet&index=[% number.index %]&tagid=[% number.tagid %]&orderby=[% number.orderby %]"> + <a href="auth_finder.pl?startfrom=[% number.startfrom %]&authtypecode=[% authtypecode %][% FOREACH searchdat IN number.searchdata %]&[% searchdat.term %]=[% searchdat.val %][% END %]&op=do_search&type=intranet&index=[% index %]&tagid=[% tagid %]&orderby=[% orderby %]"> [% number.number %]</a> [% END %] [% END %] -- 1.7.5.1 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
