fix for #229
authortipaul <tipaul>
Tue, 8 Apr 2003 11:30:55 +0000 (11:30 +0000)
committertipaul <tipaul>
Tue, 8 Apr 2003 11:30:55 +0000 (11:30 +0000)
C4/Date.pm
insertdata.pl

index 3b8dcdc..8c3f72d 100644 (file)
@@ -31,7 +31,7 @@ sub get_date_format
 sub display_date_format
 {
        my $dateformat = get_date_format();
-       
+
        if ( $dateformat eq "us" )
        {
                return "mm/dd/yyyy";
@@ -62,7 +62,7 @@ sub format_date
        }
 
        my $dateformat = get_date_format();
-       
+
        if ( $dateformat eq "us" )
        {
                Date_Init("DateFormat=US");
index ed55d71..81bce7b 100755 (executable)
@@ -51,8 +51,8 @@ my $query="Select * from borrowers where borrowernumber=$data{'borrowernumber'}"
 my $sth=$dbh->prepare($query);
 $sth->execute;
 if (my $data=$sth->fetchrow_hashref){
-  $data{'dateofbirth'}=format_date($data{'dateofbirth'});
-  $data{'joining'}=format_date($data{'joining'});
+  $data{'dateofbirth'}=format_date_in_iso($data{'dateofbirth'});
+  $data{'joining'}=format_date_in_iso($data{'joining'});
   $query="update borrowers set title='$data{'title'}',expiry='$data{'expiry'}',
   cardnumber='$data{'cardnumber'}',sex='$data{'sex'}',ethnotes='$data{'ethnicnotes'}',
   streetaddress='$data{'address'}',faxnumber='$data{'faxnumber'}',firstname='$data{'firstname'}',
@@ -67,8 +67,8 @@ if (my $data=$sth->fetchrow_hashref){
 #  print $query;
 
 }else{
-  $data{'dateofbirth'}=format_date($data{'dateofbirth'});
-  $data{'joining'}=format_date($data{'joining'});
+  $data{'dateofbirth'}=format_date_in_iso($data{'dateofbirth'});
+  $data{'joining'}=format_date_in_iso($data{'joining'});
   $query="insert into borrowers (title,expiry,cardnumber,sex,ethnotes,streetaddress,faxnumber,
   firstname,altnotes,dateofbirth,contactname,emailaddress,textmessaging,dateenrolled,streetcity,
   altrelationship,othernames,phoneday,categorycode,city,area,phone,borrowernotes,altphone,surname,