summaryrefslogtreecommitdiff
path: root/htdocs
diff options
context:
space:
mode:
authorivan <ivan>2000-03-02 08:09:38 +0000
committerivan <ivan>2000-03-02 08:09:38 +0000
commitad5de6e3d03da72070a32d089cc14632208e1ea4 (patch)
tree9386892b33acb2a58f19e48923fe67a51bd3be24 /htdocs
parentb2aed426363c22c3dc4cbad5e899028f8f96a4da (diff)
still need to allow blank expiration dates
Diffstat (limited to 'htdocs')
-rwxr-xr-xhtdocs/edit/cust_main.cgi9
1 files changed, 6 insertions, 3 deletions
diff --git a/htdocs/edit/cust_main.cgi b/htdocs/edit/cust_main.cgi
index 4eef9c7..6356a4d 100755
--- a/htdocs/edit/cust_main.cgi
+++ b/htdocs/edit/cust_main.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_main.cgi,v 1.24 2000-01-30 06:54:50 ivan Exp $
+# $Id: cust_main.cgi,v 1.25 2000-03-02 08:09:38 ivan Exp $
#
# Usage: cust_main.cgi custnum
# http://server.name/path/cust_main.cgi?custnum
@@ -38,7 +38,10 @@
# fixed one missed day->daytime ivan@sisd.com 98-jul-13
#
# $Log: cust_main.cgi,v $
-# Revision 1.24 2000-01-30 06:54:50 ivan
+# Revision 1.25 2000-03-02 08:09:38 ivan
+# still need to allow blank expiration dates
+#
+# Revision 1.24 2000/01/30 06:54:50 ivan
# credit card expiration dates not sticky bug fixed?
#
# Revision 1.23 2000/01/27 00:53:14 ivan
@@ -290,7 +293,7 @@ sub expselect {
my $prefix = shift;
my( $m, $y ) = (0, 0);
if ( scalar(@_) ) {
- my $date = shift;
+ my $date = shift || '01-2000';
if ( $date =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
( $m, $y ) = ( $2, $1 );
} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {