@@ -, +, @@ --- admin/admin-home.pl | 3 +-- admin/aqcontract.pl | 3 +-- admin/aqplan.pl | 3 +-- admin/auth_tag_structure.pl | 3 +-- admin/branch_transfer_limits.pl | 3 +-- admin/check_budget_parent.pl | 3 +-- admin/check_parent_total.pl | 3 +-- admin/checkmarc.pl | 3 +-- admin/classsources.pl | 3 +-- admin/clone-rules.pl | 3 +-- admin/didyoumean.pl | 3 +-- admin/edi_accounts.pl | 3 +-- admin/edi_ean_accounts.pl | 3 +-- admin/import_export_framework.pl | 3 +-- admin/item_circulation_alerts.pl | 3 +-- admin/marctagstructure.pl | 3 +-- admin/matching-rules.pl | 3 +-- admin/printers.pl | 3 +-- admin/smart-rules.pl | 3 +-- admin/systempreferences.pl | 3 +-- admin/transport-cost-matrix.pl | 3 +-- 21 files changed, 21 insertions(+), 42 deletions(-) --- a/admin/admin-home.pl +++ a/admin/admin-home.pl @@ -15,8 +15,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/admin/aqcontract.pl +++ a/admin/aqcontract.pl @@ -20,8 +20,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Auth; --- a/admin/aqplan.pl +++ a/admin/aqplan.pl @@ -20,8 +20,7 @@ #written 20/02/2002 by paul.poulain@free.fr # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html) -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use List::Util qw/min/; use Date::Calc qw/Delta_YMD Easter_Sunday Today Decode_Date_EU/; --- a/admin/auth_tag_structure.pl +++ a/admin/auth_tag_structure.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Koha; --- a/admin/branch_transfer_limits.pl +++ a/admin/branch_transfer_limits.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/admin/check_budget_parent.pl +++ a/admin/check_budget_parent.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --- a/admin/check_parent_total.pl +++ a/admin/check_parent_total.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --- a/admin/checkmarc.pl +++ a/admin/checkmarc.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use C4::Output; use C4::Auth; use CGI qw ( -utf8 ); --- a/admin/classsources.pl +++ a/admin/classsources.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Context; --- a/admin/clone-rules.pl +++ a/admin/clone-rules.pl @@ -25,8 +25,7 @@ # # The script can be called with one of the parameters, both or none -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --- a/admin/didyoumean.pl +++ a/admin/didyoumean.pl @@ -1,7 +1,6 @@ #!/usr/bin/perl -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Auth; --- a/admin/edi_accounts.pl +++ a/admin/edi_accounts.pl @@ -17,8 +17,7 @@ # with Koha; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -use strict; -use warnings; +use Modern::Perl; use CGI; use C4::Auth; use C4::Output; --- a/admin/edi_ean_accounts.pl +++ a/admin/edi_ean_accounts.pl @@ -17,8 +17,7 @@ # with Koha; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -use strict; -use warnings; +use Modern::Perl; use CGI; use C4::Auth; use C4::Output; --- a/admin/import_export_framework.pl +++ a/admin/import_export_framework.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use CGI::Cookie; use C4::Context; --- a/admin/item_circulation_alerts.pl +++ a/admin/item_circulation_alerts.pl @@ -15,8 +15,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use File::Basename; --- a/admin/marctagstructure.pl +++ a/admin/marctagstructure.pl @@ -18,8 +18,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Koha; --- a/admin/matching-rules.pl +++ a/admin/matching-rules.pl @@ -18,8 +18,7 @@ # along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; --- a/admin/printers.pl +++ a/admin/printers.pl @@ -37,8 +37,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -#use warnings; FIXME - Bug 2505 +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --- a/admin/smart-rules.pl +++ a/admin/smart-rules.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --- a/admin/systempreferences.pl +++ a/admin/systempreferences.pl @@ -40,8 +40,7 @@ ALSO : =cut -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use MIME::Base64; --- a/admin/transport-cost-matrix.pl +++ a/admin/transport-cost-matrix.pl @@ -17,8 +17,7 @@ # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Context; use C4::Output; --