Lines 512-518
sub GetAuthorisedValues {
Link Here
|
512 |
my $category = shift // ''; # optional parameter |
512 |
my $category = shift // ''; # optional parameter |
513 |
my $opac = shift ? 1 : 0; # normalise to be safe |
513 |
my $opac = shift ? 1 : 0; # normalise to be safe |
514 |
my $options = shift // ''; |
514 |
my $options = shift // ''; |
515 |
my $no_limit = $options->{'no_limit'} if $options; #optional parameter to ignore library limitation |
515 |
my $no_limit; |
|
|
516 |
if ($options) { $no_limit = $options->{'no_limit'}; } #optional parameter to ignore library limitation |
516 |
|
517 |
|
517 |
# Is this cached already? |
518 |
# Is this cached already? |
518 |
my $branch_limit = C4::Context::mybranch(); |
519 |
my $branch_limit = C4::Context::mybranch(); |
519 |
- |
|
|