[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4 Accounts2.pm
From: |
Bruno Toumi |
Subject: |
[Koha-cvs] koha/C4 Accounts2.pm |
Date: |
Tue, 23 May 2006 10:00:01 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch:
Changes by: Bruno Toumi <address@hidden> 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