From: Colin Campbell <[email protected]> Not defining action just causes logging of noisy runtime warnings.
Signed-off-by: Christophe Croullebois <[email protected]> --- 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.0.4 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
