X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FDebug.pm;h=566561865289a2fbf1237303d377de1d992f65c2;hb=1832b315e7dc35a755975d0bd635430ba865c84b;hp=b735ab8e5ca35fbb77f7a84d59bff94c2b54c276;hpb=5432bd488f2cd842f4fece93c42423a3fc26143b;p=koha.git diff --git a/C4/Debug.pm b/C4/Debug.pm index b735ab8e5c..5665618652 100644 --- a/C4/Debug.pm +++ b/C4/Debug.pm @@ -4,30 +4,29 @@ package C4::Debug; # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; use Exporter; -# use CGI; -use vars qw($VERSION @ISA @EXPORT $debug $cgi_debug); +# use CGI qw ( -utf8 ); +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.