Bug 22296: Add Invoice Adjustments to GetBudgetHierarchy
[koha.git] / C4 / Debug.pm
index 0a75e2d..5665618 100644 (file)
@@ -23,11 +23,10 @@ use warnings;
 use Exporter;
 
 # use CGI qw ( -utf8 );
-use vars qw($VERSION @ISA @EXPORT $debug $cgi_debug);
+use vars qw(@ISA @EXPORT $debug $cgi_debug);
 # use vars qw(@EXPORT_OK %EXPORT_TAGS);
 
 BEGIN {
-    $VERSION = 3.07.00.049;    # set the version for version checking
        @ISA       = qw(Exporter);
        @EXPORT    = qw($debug $cgi_debug);
        # @EXPOR_OK    = qw();
@@ -127,7 +126,6 @@ command with ERROR_LOG enabled for your VirtualHost.  Not intended for productio
 =item You can force the value from perl directly, like:
 
        use C4::Debug;
-       use C4::Dates;
        BEGIN { $C4::Debug::debug = 1; }
        # now any other dependencies that also use C4::Debug will have debugging ON.