diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-09-01 23:43:00 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-09-01 23:43:00 +0200 |
commit | 1001cbba7b16ccc4611bbee0474264bb551d1ea5 (patch) | |
tree | 9596c12f8ed8730e864acdfc10ddd08b0796f8ef /Bugzilla/Group.pm | |
parent | Bug 785729 - Webservice Bug.fields (_legal_field_values) should return isacti... (diff) | |
download | bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.gz bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.bz2 bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.zip |
Bug 787529: Use |use 5.10.1| everywhere
r=wicked a=LpSolit
Diffstat (limited to 'Bugzilla/Group.pm')
-rw-r--r-- | Bugzilla/Group.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index 2d4e5a0a4..a5b108723 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -5,10 +5,11 @@ # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. -use strict; - package Bugzilla::Group; +use 5.10.1; +use strict; + use base qw(Bugzilla::Object); use Bugzilla::Constants; |