From 7c2f579740b865859f501e0c56cd4a847bc6b968 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 24 Oct 2012 12:30:33 -0400 Subject: [PATCH] Bug 8952 - Add http:// to url in social media links on opac-detail Content-Type: text/plain; charset="utf-8" This patch adds a variable to the template, "protocol" based on whether "using_https" is set. The appropriate protocol is inserted before social media links. To test, confirm that OPACBaseURL is set and lacks "http(s)://" Social media links should include correct URLs. A follow-up patch could copy use of this [% protocol %] variable in other parts of this template which duplicate large chunks of HTML based on [% using_https %]. --- koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt index 3ecdc27..22b2367 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt @@ -1,5 +1,9 @@ [% USE KohaDates %] - +[% IF ( using_https ) %] + [% SET protocol = "https://" %] +[% ELSE %] + [% SET protocol = "http://" %] +[% END %] [% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Details for: [% title |html %][% FOREACH subtitl IN subtitle %], [% subtitl.subfield |html %][% END %] [% INCLUDE 'doc-head-close.inc' %] @@ -1214,11 +1218,11 @@ YAHOO.util.Event.onContentReady("furtherm", function () { [% IF ( SocialNetworks ) %]
Share -
Facebook
+
Facebook
Twitter
-
LinkedIn
-
Delicious
-
Email
+
LinkedIn
+
Delicious
+
Email
[% END %] -- 1.7.9.5