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 /Bugzilla/Config | |
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 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/Common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm index 75f6e0ea2..64c7ebcbb 100644 --- a/Bugzilla/Config/Common.pm +++ b/Bugzilla/Config/Common.pm @@ -19,7 +19,7 @@ use Bugzilla::Field; use Bugzilla::Group; use Bugzilla::Status; -use base qw(Exporter); +use parent qw(Exporter); @Bugzilla::Config::Common::EXPORT = qw(check_multi check_numeric check_regexp check_url check_group check_sslbase check_priority check_severity check_platform |