summaryrefslogtreecommitdiff
path: root/LedgerSMB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'LedgerSMB.pm')
-rwxr-xr-xLedgerSMB.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/LedgerSMB.pm b/LedgerSMB.pm
index 3f15ecc7..b3d6e1dd 100755
--- a/LedgerSMB.pm
+++ b/LedgerSMB.pm
@@ -460,8 +460,8 @@ sub call_procedure {
sub is_allowed_role {
my $self = shift @_;
my %args = @_;
- my @roles = @{$args{allowed_roles}}
- for $role (@roles){
+ my @roles = @{$args{allowed_roles}};
+ for my $role (@roles){
if (scalar(grep /^$role$/, $self->{_roles})){
return 1;
}