[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4 Context.pm
From: |
Henri-Damien LAURENT |
Subject: |
[Koha-cvs] koha/C4 Context.pm |
Date: |
Fri, 03 Mar 2006 17:25:01 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Branch:
Changes by: Henri-Damien LAURENT <address@hidden> 06/03/03 17:25:01
Modified files:
C4 : Context.pm
Log message:
Bug fixing : a line missed a comment sign.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Context.pm.diff?tr1=1.31&tr2=1.32&r1=text&r2=text
Patches:
Index: koha/C4/Context.pm
diff -u koha/C4/Context.pm:1.31 koha/C4/Context.pm:1.32
--- koha/C4/Context.pm:1.31 Fri Mar 3 16:45:36 2006
+++ koha/C4/Context.pm Fri Mar 3 17:25:01 2006
@@ -15,7 +15,7 @@
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
-# $Id: Context.pm,v 1.31 2006/03/03 16:45:36 kados Exp $
+# $Id: Context.pm,v 1.32 2006/03/03 17:25:01 hdl Exp $
package C4::Context;
use strict;
@@ -26,7 +26,7 @@
qw($context),
qw(@context_stack);
-$VERSION = do { my @v = '$Revision: 1.31 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.32 $' =~ /\d+/g;
shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
=head1 NAME
@@ -421,7 +421,7 @@
# if ($Zconn->errcode() != 0) {
# $context->{"Zconn"} = &new_Zconn();
# return $context->{"Zconn"};
- }
+# }
return $context->{"Zconn"};
} else {
$context->{"Zconn"} = &new_Zconn();
@@ -780,6 +780,9 @@
=cut
# $Log: Context.pm,v $
+# Revision 1.32 2006/03/03 17:25:01 hdl
+# Bug fixing : a line missed a comment sign.
+#
# Revision 1.31 2006/03/03 16:45:36 kados
# Remove the search that tests the Zconn -- warning, still no fault
# tollerance
- [Koha-cvs] koha/C4 Context.pm,
Henri-Damien LAURENT <=