From a50072b2a0acafe3c2a0ffe858edef7a8415b6e2 Mon Sep 17 00:00:00 2001 From: "jonathan.druart@bugs.koha-community.org" Date: Tue, 13 Oct 2015 14:56:10 +0000 Subject: [PATCH] Bug 15005: Replace CGI->url with the corresponding url CGI->url does not return the correct url on install using packages. Test plan: 1/ Try to reproduce the bug from the description of bug 15005. You should be able to login to the intranet and the OPAC 2/ Send a basket and a list from the intranet and the OPAC. Signed-off-by: Josef Moravec --- C4/Auth.pm | 2 -- C4/InstallAuth.pm | 2 -- koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt | 2 +- 9 files changed, 7 insertions(+), 11 deletions(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index ef0c585..284cfe7 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -1245,9 +1245,7 @@ sub checkauth { ); } - my $self_url = $query->url( -absolute => 1 ); $template->param( - url => $self_url, LibraryName => C4::Context->preference("LibraryName"), ); $template->param(%info); diff --git a/C4/InstallAuth.pm b/C4/InstallAuth.pm index c1eba6a..de304ba 100644 --- a/C4/InstallAuth.pm +++ b/C4/InstallAuth.pm @@ -381,8 +381,6 @@ sub checkauth { $template->param( login => 1 ); $template->param( loginprompt => 1 ) unless $info{'nopermission'}; - my $self_url = $query->url( -absolute => 1 ); - $template->param( url => $self_url, ); $template->param( \%info ); $cookie = $query->cookie( -name => 'CGISESSID', diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt index b43143f..cfd7efe 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt @@ -40,7 +40,7 @@ [% END %] -
+ [% FOREACH INPUT IN INPUTS %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt index d0f7957..93a0f9d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt @@ -16,7 +16,7 @@ [% ELSE %] - +
Sending your cart diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt index d55c71e..c3509cd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/auth.tt @@ -29,7 +29,7 @@ [% IF ( loginprompt ) %] - + [% FOREACH INPUT IN INPUTS %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt index e38a071..8c44afa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt @@ -15,7 +15,7 @@ [% ELSE %] - +
Sending your list diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt index 6a3f9e2..3dc1c56 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt @@ -138,7 +138,7 @@ [% END # / IF casAuthentication %] - +
[% FOREACH INPUT IN INPUTS %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt index ad4ce33..aa46c6a 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt @@ -27,7 +27,7 @@ [% ELSE %]

Sending your cart

- +
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt index 3b38535..14a9165 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelfform.tt @@ -30,7 +30,7 @@

Back to lists

[% ELSE %]

Sending your list

- +
-- 2.1.4