From af76ab2d58bd040802998ee0c9748f1de5d7823f Mon Sep 17 00:00:00 2001 From: tipaul Date: Thu, 10 Jul 2003 12:24:20 +0000 Subject: [PATCH] typo fix --- C4/Biblio.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 798ad3b25e..e171cb1624 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -1,6 +1,9 @@ package C4::Biblio; # $Id$ # $Log$ +# Revision 1.53 2003/07/10 12:24:20 tipaul +# typo fix +# # Revision 1.52 2003/07/10 10:37:19 tipaul # fix for copyrightdate problem, #514 # @@ -1104,7 +1107,7 @@ sub MARCmarc2koha { if ($1>0) { $result->{'copyrightdate'} = $1; } else { # if no cYYYY, get the 1st date. - $x =~ m/(\d\d\d\d)/; + $temp =~ m/(\d\d\d\d)/; $result->{'copyrightdate'} = $1; } return $result; -- 2.39.2