diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-12 14:30:56 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-12 14:30:56 +0100 |
commit | b4acbda401099bf296a679066c168ae07ef2dda2 (patch) | |
tree | 15741d8c4a50b16785b68c7f5a54a71e0d5718c4 /Bugzilla/Search/ClauseGroup.pm | |
parent | 9426b8ea72bfa4ea7725e5499107e5b283a1a76c (diff) | |
download | bugzilla-b4acbda401099bf296a679066c168ae07ef2dda2.tar.gz bugzilla-b4acbda401099bf296a679066c168ae07ef2dda2.tar.xz |
Bug 787668 #2: Use |use parent| instead of |use base|
Diffstat (limited to 'Bugzilla/Search/ClauseGroup.pm')
-rw-r--r-- | Bugzilla/Search/ClauseGroup.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search/ClauseGroup.pm b/Bugzilla/Search/ClauseGroup.pm index 1085ad82c..a50dc4fb3 100644 --- a/Bugzilla/Search/ClauseGroup.pm +++ b/Bugzilla/Search/ClauseGroup.pm @@ -10,7 +10,7 @@ package Bugzilla::Search::ClauseGroup; use 5.10.1; use strict; -use base qw(Bugzilla::Search::Clause); +use parent qw(Bugzilla::Search::Clause); use Bugzilla::Error; use Bugzilla::Search::Condition qw(condition); |