From 7b161b5bbe09d80197906aa049080607852066d9 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 2 May 2014 12:06:30 +0200 Subject: [PATCH] Bug 11715: Update POD for get_template_and_user If flagsrequired is set, authnotrequired should be 0. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- C4/Auth.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index b0f985f7e3..c04253aa00 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -85,7 +85,7 @@ C4::Auth - Authenticates Koha users template_name => "opac-main.tmpl", query => $query, type => "opac", - authnotrequired => 1, + authnotrequired => 0, flagsrequired => {borrow => 1, catalogue => '*', tools => 'import_patrons' }, } ); @@ -109,7 +109,7 @@ automatically. This gets loaded into the template. template_name => "opac-main.tmpl", query => $query, type => "opac", - authnotrequired => 1, + authnotrequired => 0, flagsrequired => {borrow => 1, catalogue => '*', tools => 'import_patrons' }, } ); -- 2.11.0