diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-12-01 02:18:21 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-12-01 02:18:21 +0100 |
commit | b4adb1ab4c7e3c34d64b92530602ca38144f249b (patch) | |
tree | e1c088d37f09b8b54bbde313b60f1ff874f2cf78 /template/en/default/extensions | |
parent | 45f67203b182d6a64b9708a22d82a21e455deb74 (diff) | |
download | bugzilla-b4adb1ab4c7e3c34d64b92530602ca38144f249b.tar.gz bugzilla-b4adb1ab4c7e3c34d64b92530602ca38144f249b.tar.xz |
Bug 787668: Use |use parent| instead of |use base|
r/a=LpSolit
Diffstat (limited to 'template/en/default/extensions')
-rw-r--r-- | template/en/default/extensions/extension.pm.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/extensions/util.pm.tmpl | 2 |
2 files changed, 2 insertions, 2 deletions
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( ); |