diff options
author | ivan <ivan> | 2010-11-08 18:39:34 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-11-08 18:39:34 +0000 |
commit | 25130cc2e205c1d2c31fc9a14135148b5b2aa835 (patch) | |
tree | 365d7dc8dfd2eac3bf0c6b89a5bac32fc8135354 /httemplate/edit/process/cust_refund.cgi | |
parent | 67b83de99e43283a745ce5b0aa5da84b6d2643a8 (diff) |
fix fallout from more granular ACLs for payments, RT#10505
Diffstat (limited to 'httemplate/edit/process/cust_refund.cgi')
-rwxr-xr-x | httemplate/edit/process/cust_refund.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/cust_refund.cgi b/httemplate/edit/process/cust_refund.cgi index 389bc990c..f4cce6535 100755 --- a/httemplate/edit/process/cust_refund.cgi +++ b/httemplate/edit/process/cust_refund.cgi @@ -31,10 +31,10 @@ my $link = $cgi->param('popup') ? 'popup' : ''; my $payby = $cgi->param('payby'); my @rights = (); -push @rights, 'Post refund' if $payby /^(BILL|CASH)$/; +push @rights, 'Post refund' if $payby =~ /^(BILL|CASH)$/; push @rights, 'Post check refund' if $payby eq 'BILL'; push @rights, 'Post cash refund ' if $payby eq 'CASH'; -push @rights, 'Refund payment' if $payby /^(CARD|CHEK)$/; +push @rights, 'Refund payment' if $payby =~ /^(CARD|CHEK)$/; push @rights, 'Refund credit card payment' if $payby eq 'CARD'; push @rights, 'Refund Echeck payment' if $payby eq 'CHEK'; |