Bug 11715: Update POD for get_template_and_user

If flagsrequired is set, authnotrequired should be 0.

Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
Jonathan Druart 2014-05-02 12:06:30 +02:00 committed by Tomas Cohen Arazi
parent effb64f7f2
commit 7b161b5bbe

View file

@ -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' },
}
);