Skip to content

Commit

Permalink
Adding warnings to request/ files
Browse files Browse the repository at this point in the history
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
  • Loading branch information
Joshua Ferraro authored and Galen Charlton committed Feb 9, 2009
1 parent b50051a commit f823508
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions reserve/modrequest.pl
Expand Up @@ -23,6 +23,7 @@
# Suite 330, Boston, MA 02111-1307 USA

use strict;
use warnings;
use CGI;
use C4::Output;
use C4::Reserves;
Expand Down
1 change: 1 addition & 0 deletions reserve/placerequest.pl
Expand Up @@ -22,6 +22,7 @@
# Suite 330, Boston, MA 02111-1307 USA

use strict;
use warnings;
use C4::Biblio;
use C4::Items;
use CGI;
Expand Down
4 changes: 2 additions & 2 deletions reserve/renewscript.pl
Expand Up @@ -21,12 +21,12 @@
# 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
Expand Down
1 change: 1 addition & 0 deletions reserve/request.pl
Expand Up @@ -26,6 +26,7 @@ =head1 request.pl
=cut

use strict;
use warnings;
use C4::Branch; # GetBranches get_branchinfos_of
use CGI;
use List::MoreUtils qw/uniq/;
Expand Down

0 comments on commit f823508

Please sign in to comment.