[Koha-cvs] koha/C4 Accounts2.pm

Bruno Toumi btoumi at ouestprovence.fr
Tue May 23 12:00:01 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	
Changes by:	Bruno Toumi <btoumi at savannah.gnu.org>	06/05/23 10:00:01

Modified files:
	C4             : Accounts2.pm 

Log message:
	syntax error has been corrected

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Accounts2.pm.diff?tr1=1.29&tr2=1.30&r1=text&r2=text

Patches:
Index: koha/C4/Accounts2.pm
diff -u koha/C4/Accounts2.pm:1.29 koha/C4/Accounts2.pm:1.30
--- koha/C4/Accounts2.pm:1.29	Sun May 21 06:03:32 2006
+++ koha/C4/Accounts2.pm	Tue May 23 10:00:01 2006
@@ -18,7 +18,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Accounts2.pm,v 1.29 2006/05/21 06:03:32 rangi Exp $
+# $Id: Accounts2.pm,v 1.30 2006/05/23 10:00:01 btoumi Exp $
 use strict;
 require Exporter;
 use DBI;
@@ -29,7 +29,8 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.29 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.30 $' =~ /\d+/g; 
+shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
 
 =head1 NAME
 





More information about the Koha-cvs mailing list