summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-01-12 14:30:56 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-01-12 14:30:56 +0100
commitb4acbda401099bf296a679066c168ae07ef2dda2 (patch)
tree15741d8c4a50b16785b68c7f5a54a71e0d5718c4 /Bugzilla/Search
parent9426b8ea72bfa4ea7725e5499107e5b283a1a76c (diff)
downloadbugzilla-b4acbda401099bf296a679066c168ae07ef2dda2.tar.gz
bugzilla-b4acbda401099bf296a679066c168ae07ef2dda2.tar.xz
Bug 787668 #2: Use |use parent| instead of |use base|
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r--Bugzilla/Search/ClauseGroup.pm2
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);