From e9fe74360c7e6a1bad0734d3068af769af24ba50 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Sat, 26 Apr 2014 19:35:41 -0400 Subject: [PATCH] Bug 5010 - Follow up: Case typographical error The call had 'OPACProtocol', but it should be 'OpacProtocol'. I am uncertain why it functioned. TEST PLAN --------- 1) Retest the sending cart from staff client. Sign comment: It works because mysql is case insensitive :) (try "select variable from systempreferences where variable like 'opac%'") Signed-off-by: Bernardo Gonzalez Kriegel No koha-qa errors --- .../prog/en/modules/basket/sendbasket.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt index 6f835a6..00e6c9d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt @@ -134,7 +134,7 @@ Your cart [% IF ( OPACBaseURL ) %]

- In online catalog: [% Koha.Preference( 'OPACProtocol' ) %][% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% BIBLIO_RESULT.biblionumber %] + In online catalog: [% Koha.Preference( 'OpacProtocol' ) %][% OPACBaseURL %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% BIBLIO_RESULT.biblionumber %]

[% END %] [% IF ( BIBLIO_RESULT.ITEM_RESULTS.size ) %] -- 1.7.9.5