Adding warnings to request/ files
authorJoshua Ferraro <jmf@liblime.com>
Wed, 4 Feb 2009 16:46:22 +0000 (10:46 -0600)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 16 Sep 2009 21:19:03 +0000 (23:19 +0200)
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
reserve/modrequest.pl
reserve/placerequest.pl
reserve/renewscript.pl
reserve/request.pl

index 7774ec5..a88b67c 100755 (executable)
@@ -23,6 +23,7 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
+use warnings;
 use CGI;
 use C4::Output;
 use C4::Reserves;
index 36379f8..96fdb7c 100755 (executable)
@@ -22,6 +22,7 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
+use warnings;
 use C4::Biblio;
 use C4::Items;
 use CGI;
index f4b2a65..2d26929 100755 (executable)
 # You should have received a copy of the GNU General Public License along with
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
-
+use strict;
+use warnings;
 use CGI;
 use C4::Circulation;
 use C4::Auth;
 use C4::Dates qw/format_date_in_iso/;
-use strict;
 my $input = new CGI;
 
 #Set Up User_env
index a660950..f14df3f 100755 (executable)
@@ -26,6 +26,7 @@ script to place reserves/requests
 =cut
 
 use strict;
+use warnings;
 use C4::Branch; # GetBranches get_branchinfos_of
 use CGI;
 use List::MoreUtils qw/uniq/;