Skip to content

Commit

Permalink
Bug 20018: use Modern::Perl in offline_circ scripts
Browse files Browse the repository at this point in the history
Test Plan:
- Check that it now says 'use Modern::Perl' and not 'use trict; use
warnings;' in the follwing plugins perl scripts

enqueue_koc.pl
list.pl
process.pl
process_koc.pl
service.pl

Signed-off-by: Jon Knight <[email protected]>

Signed-off-by: Katrin Fischer <[email protected]>

Signed-off-by: Jonathan Druart <[email protected]>
  • Loading branch information
zoebbennett authored and joubu committed Feb 5, 2018
1 parent cad2db6 commit 484fd32
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions offline_circ/enqueue_koc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#

use strict;
use warnings;
use Modern::Perl;

use CGI qw ( -utf8 );
use C4::Output;
Expand Down
3 changes: 1 addition & 2 deletions offline_circ/list.pl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#

use strict;
use warnings;
use Modern::Perl;

use CGI qw ( -utf8 );
use C4::Output;
Expand Down
3 changes: 1 addition & 2 deletions offline_circ/process.pl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#

use strict;
use warnings;
use Modern::Perl;

use CGI qw ( -utf8 );
use C4::Auth;
Expand Down
3 changes: 1 addition & 2 deletions offline_circ/process_koc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#

use strict;
use warnings;
use Modern::Perl;

use CGI qw ( -utf8 );
use Carp;
Expand Down
3 changes: 1 addition & 2 deletions offline_circ/service.pl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#

use strict;
use warnings;
use Modern::Perl;

use CGI qw ( -utf8 );
use C4::Auth;
Expand Down

0 comments on commit 484fd32

Please sign in to comment.