Browse Source

Bug 2505 - Add commented use warnings where missing in the tools/ directory

3.2.x
Donovan Jones 14 years ago
committed by Chris Cormack
parent
commit
44201a54e1
  1. 1
      tools/background-job-progress.pl
  2. 1
      tools/batchMod.pl
  3. 1
      tools/cleanborrowers.pl
  4. 1
      tools/csv-profiles.pl
  5. 1
      tools/koha-news.pl
  6. 1
      tools/pdfViewer.pl
  7. 3
      tools/picture-upload.pl
  8. 1
      tools/scheduler.pl
  9. 1
      tools/stage-marc-import.pl
  10. 1
      tools/upload-file-progress.pl
  11. 1
      tools/upload-file.pl
  12. 1
      tools/viewlog.pl

1
tools/background-job-progress.pl

@ -18,6 +18,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
# standard or CPAN modules used
use IO::File;

1
tools/batchMod.pl

@ -20,6 +20,7 @@
use CGI;
use strict;
#use warnings; FIXME - Bug 2505
use C4::Auth;
use C4::Output;
use C4::Biblio;

1
tools/cleanborrowers.pl

@ -33,6 +33,7 @@ This script allows to do 2 things.
=cut
use strict;
#use warnings; FIXME - Bug 2505
use CGI;
use C4::Auth;
use C4::Output;

1
tools/csv-profiles.pl

@ -35,6 +35,7 @@ This script allow the user to define a new profile for CSV export
=cut
use strict;
#use warnings; FIXME - Bug 2505
use Data::Dumper;
use Encode;

1
tools/koha-news.pl

@ -22,6 +22,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
use CGI;
use C4::Auth;
use C4::Koha;

1
tools/pdfViewer.pl

@ -23,6 +23,7 @@
use strict;
#use warnings; FIXME - Bug 2505
use C4::Context;
use CGI;

3
tools/picture-upload.pl

@ -19,6 +19,9 @@
#
#
#use strict;
#use warnings; FIXME - Bug 2505
use File::Temp;
use File::Copy;
use CGI;

1
tools/scheduler.pl

@ -18,6 +18,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
use C4::Context;
use C4::Scheduler;
use C4::Reports::Guided;

1
tools/stage-marc-import.pl

@ -25,6 +25,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
# standard or CPAN modules used
use CGI;

1
tools/upload-file-progress.pl

@ -18,6 +18,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
# standard or CPAN modules used
use IO::File;

1
tools/upload-file.pl

@ -18,6 +18,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
# standard or CPAN modules used
use IO::File;

1
tools/viewlog.pl

@ -19,6 +19,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use strict;
#use warnings; FIXME - Bug 2505
use C4::Auth;
use CGI;
use C4::Context;

Loading…
Cancel
Save