diff options
author | ivan <ivan> | 2005-10-27 15:48:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-10-27 15:48:36 +0000 |
commit | e0ab4446794f3c9ad0ecf012fcc8b1b3ef4d48cf (patch) | |
tree | a5e74cb3ddcc0b933f3e1c84c07a3e64c652fcc6 | |
parent | c758e7dbbea040445a7c9a6f4b095b33678f56bb (diff) |
fix from joe @ surferz: lines 59 and 60 had the wrote quote. they had single quote where double was needed...
-rwxr-xr-x | httemplate/search/cust_pay.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/cust_pay.cgi b/httemplate/search/cust_pay.cgi index 2106a649a..9b9458e63 100755 --- a/httemplate/search/cust_pay.cgi +++ b/httemplate/search/cust_pay.cgi @@ -56,8 +56,8 @@ } elsif ( $3 eq 'Maestro' ) { push @search, " ( substring(cust_pay.payinfo from 1 for 2 ) = '63' ". - ' OR substring(cust_pay.payinfo from 1 for 2 ) = '67' ". - ' OR substring(cust_pay.payinfo from 1 for 6 ) = '564182' ". + " OR substring(cust_pay.payinfo from 1 for 2 ) = '67' ". + " OR substring(cust_pay.payinfo from 1 for 6 ) = '564182' ". " OR substring(cust_pay.payinfo from 1 for 4 ) = '4936' ". " OR substring(cust_pay.payinfo from 1 for 6 ) ". " SIMILAR TO '49030[2-9]' ". |