From b2e8eb4a7c8bd6ad451ed3d9180322effe7b50fd Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Mon, 7 Jan 2008 13:52:53 -0600 Subject: [PATCH] Context.pm - BEGIN block VERSION and vars related to export. Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- C4/Context.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/C4/Context.pm b/C4/Context.pm index 48bf9a6816..c000f340f0 100644 --- a/C4/Context.pm +++ b/C4/Context.pm @@ -17,6 +17,7 @@ package C4::Context; # Suite 330, Boston, MA 02111-1307 USA use strict; +use vars qw($VERSION $AUTOLOAD $context @context_stack); BEGIN { if ($ENV{'HTTP_USER_AGENT'}) { @@ -51,18 +52,14 @@ BEGIN { } CGI::Carp->set_message(\&handle_errors); } # else there is no browser to send fatals to! + $VERSION = '3.00.00.036'; } use DBI; use ZOOM; use XML::Simple; - use C4::Boolean; -use vars qw($VERSION $AUTOLOAD $context @context_stack); - -$VERSION = '3.00.00.036'; - =head1 NAME C4::Context - Maintain and manipulate the context of a Koha script -- 2.39.2