Lines 487-493
sub GetAuthorisedValues {
Link Here
|
487 |
my $category = shift // ''; # optional parameter |
487 |
my $category = shift // ''; # optional parameter |
488 |
my $opac = shift ? 1 : 0; # normalise to be safe |
488 |
my $opac = shift ? 1 : 0; # normalise to be safe |
489 |
my $options = shift // ''; |
489 |
my $options = shift // ''; |
490 |
my $no_limit = $options->{'no_limit'} if $options; #optional parameter to ignore library limitation |
490 |
my $no_limit; |
|
|
491 |
if ($options) { $no_limit = $options->{'no_limit'}; } #optional parameter to ignore library limitation |
491 |
|
492 |
|
492 |
# Is this cached already? |
493 |
# Is this cached already? |
493 |
my $branch_limit = |
494 |
my $branch_limit = |
494 |
- |
|
|