From 55171a6af4a1a84fda7e2eea207bcfa5f8e6d4a5 Mon Sep 17 00:00:00 2001 From: btoumi Date: Tue, 23 May 2006 15:01:12 +0000 Subject: [PATCH] syntax error has been corrected --- C4/Acquisition.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Acquisition.pm b/C4/Acquisition.pm index ee95e1674a..fe32fca822 100644 --- a/C4/Acquisition.pm +++ b/C4/Acquisition.pm @@ -28,7 +28,7 @@ use C4::Suggestions; use vars qw($VERSION @ISA @EXPORT); # set the version for version checking -$VERSION = do { my @v = '$Revision$' =~ /\d+/g;; +$VERSION = do { my @v = '$Revision$' =~ /\d+/g;shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); }; =head1 NAME -- 2.39.5