From b4adb1ab4c7e3c34d64b92530602ca38144f249b Mon Sep 17 00:00:00 2001 From: Matt Selsky Date: Sat, 1 Dec 2012 02:18:21 +0100 Subject: Bug 787668: Use |use parent| instead of |use base| r/a=LpSolit --- template/en/default/extensions/extension.pm.tmpl | 2 +- template/en/default/extensions/util.pm.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'template') diff --git a/template/en/default/extensions/extension.pm.tmpl b/template/en/default/extensions/extension.pm.tmpl index 206ea88f4..993bceb18 100644 --- a/template/en/default/extensions/extension.pm.tmpl +++ b/template/en/default/extensions/extension.pm.tmpl @@ -14,7 +14,7 @@ package B[% %]ugzilla::Extension::[% name %]; use strict; -use base qw(B[% %]ugzilla::Extension); +use parent qw(B[% %]ugzilla::Extension); # This code for this is in [% path %]/lib/Util.pm use B[% %]ugzilla::Extension::[% name %]::Util; diff --git a/template/en/default/extensions/util.pm.tmpl b/template/en/default/extensions/util.pm.tmpl index 6c9fe3795..c693c8a01 100644 --- a/template/en/default/extensions/util.pm.tmpl +++ b/template/en/default/extensions/util.pm.tmpl @@ -14,7 +14,7 @@ package B[% %]ugzilla::Extension::[% name %]::Util; use strict; -use base qw(Exporter); +use parent qw(Exporter); our @EXPORT = qw( ); -- cgit v1.2.3-24-g4f1b