[Koha-patches] [PATCH] Bug 6562: Silence runtime error in reserve/request.pl

Colin Campbell colin.campbell at ptfs-europe.com
Thu Jul 7 13:40:53 CEST 2011


Not defining action just causes logging of noisy
runtime warnings.
---
 reserve/request.pl |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/reserve/request.pl b/reserve/request.pl
index 79ff6b5..0c952b4 100755
--- a/reserve/request.pl
+++ b/reserve/request.pl
@@ -93,6 +93,7 @@ my $messages;
 
 my $date = C4::Dates->today('iso');
 my $action = $input->param('action');
+$action ||= q{};
 
 if ( $action eq 'move' ) {
   my $where = $input->param('where');
-- 
1.7.6



More information about the Koha-patches mailing list