From 25130cc2e205c1d2c31fc9a14135148b5b2aa835 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 8 Nov 2010 18:39:34 +0000 Subject: [PATCH] fix fallout from more granular ACLs for payments, RT#10505 --- httemplate/edit/cust_refund.cgi | 4 ++-- httemplate/edit/process/cust_refund.cgi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/httemplate/edit/cust_refund.cgi b/httemplate/edit/cust_refund.cgi index 612e337f7..6fcb01113 100755 --- a/httemplate/edit/cust_refund.cgi +++ b/httemplate/edit/cust_refund.cgi @@ -141,10 +141,10 @@ my $reason = $cgi->param('reason'); my $link = $cgi->param('popup') ? 'popup' : ''; 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'; 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'; -- 2.11.0