Bugzilla – Attachment 71181 Details for
Bug 20018
use Modern::Perl in offline circulation perl scripts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20018: Changing 'use strict; use warnings;' to 'use Modern::Perl;'
Bug-20018-Changing-use-strict-use-warnings-to-use-.patch (text/plain), 2.47 KB, created by
Katrin Fischer
on 2018-02-04 13:11:37 UTC
(
hide
)
Description:
Bug 20018: Changing 'use strict; use warnings;' to 'use Modern::Perl;'
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2018-02-04 13:11:37 UTC
Size:
2.47 KB
patch
obsolete
>From 9b9881cfb8c5a6fedf2fc25cedb4b41645d92b38 Mon Sep 17 00:00:00 2001 >From: Zoe Bennett <zoebennett1308@gmail.com> >Date: Thu, 18 Jan 2018 03:32:43 +0000 >Subject: [PATCH] Bug 20018: Changing 'use strict; use warnings;' to 'use > Modern::Perl;' > >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 > >https://bugs.koha-community.org/show_bug.cgi?id=20018 >Signed-off-by: Jon Knight <J.P.Knight@lboro.ac.uk> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > offline_circ/enqueue_koc.pl | 3 +-- > offline_circ/list.pl | 3 +-- > offline_circ/process.pl | 3 +-- > offline_circ/process_koc.pl | 3 +-- > offline_circ/service.pl | 3 +-- > 5 files changed, 5 insertions(+), 10 deletions(-) > >diff --git a/offline_circ/enqueue_koc.pl b/offline_circ/enqueue_koc.pl >index 57ae38c86e..0f32352a7f 100755 >--- a/offline_circ/enqueue_koc.pl >+++ b/offline_circ/enqueue_koc.pl >@@ -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; >diff --git a/offline_circ/list.pl b/offline_circ/list.pl >index 06416292d9..a58e94d06f 100755 >--- a/offline_circ/list.pl >+++ b/offline_circ/list.pl >@@ -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; >diff --git a/offline_circ/process.pl b/offline_circ/process.pl >index caf24be625..a8a59dd73f 100755 >--- a/offline_circ/process.pl >+++ b/offline_circ/process.pl >@@ -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; >diff --git a/offline_circ/process_koc.pl b/offline_circ/process_koc.pl >index d2d8553d29..a72dbdd384 100755 >--- a/offline_circ/process_koc.pl >+++ b/offline_circ/process_koc.pl >@@ -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; >diff --git a/offline_circ/service.pl b/offline_circ/service.pl >index a23e2b8199..b36162f98e 100755 >--- a/offline_circ/service.pl >+++ b/offline_circ/service.pl >@@ -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; >-- >2.14.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 20018
:
70674
|
70901
| 71181