[Koha-patches] [PATCH] bug 2505: turn on warnings in labels/label-item-search.pl

Galen Charlton galen.charlton at liblime.com
Wed Dec 31 22:35:45 CET 2008


---
 labels/label-item-search.pl |   18 ++++--------------
 1 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/labels/label-item-search.pl b/labels/label-item-search.pl
index 7dc1ccd..392f61e 100755
--- a/labels/label-item-search.pl
+++ b/labels/label-item-search.pl
@@ -1,5 +1,4 @@
 #!/usr/bin/perl
-# WARNING: 4-character tab stops here
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -19,6 +18,8 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
+use warnings;
+
 use CGI;
 use C4::Auth;
 use HTML::Template::Pro;
@@ -54,7 +55,7 @@ BEGIN {
 my $query           = new CGI;
 
 my $type      = $query->param('type');
-my $op        = $query->param('op');
+my $op        = $query->param('op') || '';
 my $batch_id  = $query->param('batch_id');
 my $ccl_query = $query->param('ccl_query');
 
@@ -97,7 +98,7 @@ if ($op eq "do_search") {
 	if ($marcresults) {
 		$show_results = scalar @$marcresults;
 	} else {
-		warn "ERROR label-item-search: no results from SimpleSearch";
+		$debug and warn "ERROR label-item-search: no results from SimpleSearch";
 
 		# leave $show_results undef
 	}
@@ -270,14 +271,3 @@ $template->param(
     DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
 );
 output_html_with_http_headers $query, $cookie, $template->output;
-
-# Local Variables:
-# tab-width: 4
-# End:
-
-
-
-
-
-
-
-- 
1.5.5.GIT




More information about the Koha-patches mailing list