From 81333f7ea37c290868af6471ebaf99e736cc30e9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20V=C3=A9ron?= Date: Tue, 14 Apr 2015 07:25:45 +0200 Subject: [PATCH] Bug 13991: Uninitialized value $src in /tools/viewlog.pl MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit To reproduce: Go to Home > Tools > Logs Check intranet-error.log. You will find a line similar to: viewlog.pl: Use of uninitialized value $src in string eq at (...)/tools/viewlog.pl line 70., referer: http://(...)/cgi-bin/koha/tools/tools-home.pl To test: Apply patch. Verify that no more warnings appear in intranet-error.log Verify that the log viewer behaves as before. Signed-off-by: Andreas Hedström Mace Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 7ec3d6dfe98e19f0baa525a5b2b3839b0a35379c) Signed-off-by: Chris Cormack --- tools/viewlog.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/viewlog.pl b/tools/viewlog.pl index e526c1ff9f..43d860a63f 100755 --- a/tools/viewlog.pl +++ b/tools/viewlog.pl @@ -54,7 +54,7 @@ my $datefrom = $input->param("from"); my $dateto = $input->param("to"); my $basename = $input->param("basename"); my $output = $input->param("output") || "screen"; -my $src = $input->param("src"); # this param allows us to be told where we were called from -fbcit +my $src = $input->param("src") || ""; # this param allows us to be told where we were called from -fbcit my ( $template, $borrowernumber, $cookie ) = get_template_and_user( { -- 2.39.5