From: Chris Cormack Date: Mon, 10 Mar 2014 21:51:00 +0000 (+1300) Subject: Bug 11715: Set the default of authnotrequired = 0 in get_template_and_user X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=0599c9b6e9a509c375d5d19e4a64653cbbf14f5e;p=koha_fer Bug 11715: Set the default of authnotrequired = 0 in get_template_and_user To test: Verify that pages in the OPAC and staff interface display correctly. Note that there are cases where 'authnotrequired' was not passed at all to get_template_and_user, so there may be pages that start requiring authentication. Whether that is correct or not depends on context. Follow up patches are to remove all the unnessecary setting of this value, so that the only places we set are when we do want authnotrequired=1 Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- diff --git a/C4/Auth.pm b/C4/Auth.pm index e98b43c2bd..b0f985f7e3 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -137,6 +137,7 @@ sub get_template_and_user { C4::Context->interface($in->{type}); + $in->{'authnotrequired'} ||= 0; my $template = C4::Templates::gettemplate( $in->{'template_name'}, $in->{'type'},