Browse Source

Bug 6553 : Fixing authentication issue, there is no reason we should be able to use these without authentication

http://bugs.koha-community.org/show_bug.cgi?id=6653

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
3.6.x-rmaint/testing
Chris Cormack 13 years ago
parent
commit
aa51c89d57
  1. 2
      rotating_collections/addItems.pl
  2. 2
      rotating_collections/editCollections.pl
  3. 2
      rotating_collections/rotatingCollections.pl
  4. 2
      rotating_collections/transferCollection.pl

2
rotating_collections/addItems.pl

@ -16,7 +16,7 @@ my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "rotating_collections/addItems.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
authnotrequired => 0,
flagsrequired => {parameters => 1},
debug => 1,
});

2
rotating_collections/editCollections.pl

@ -17,7 +17,7 @@ my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "rotating_collections/editCollections.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
authnotrequired => 0,
flagsrequired => {parameters => 1},
debug => 1,
});

2
rotating_collections/rotatingCollections.pl

@ -15,7 +15,7 @@ my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "rotating_collections/rotatingCollections.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
authnotrequired => 0,
flagsrequired => {parameters => 1},
debug => 1,
});

2
rotating_collections/transferCollection.pl

@ -20,7 +20,7 @@ my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "rotating_collections/transferCollection.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
authnotrequired => 0,
flagsrequired => {parameters => 1},
debug => 1,
});

Loading…
Cancel
Save