Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/Example/template/en/default/setup/strings.txt.pl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
# Contributor(s):
# Max Kanat-Alexander <mkanat@bugzilla.org>

use 5.10.1;
use strict;
use warnings;

%strings = (feature_example_acme => 'Example Extension: Acme Feature',);

1;
4 changes: 4 additions & 0 deletions extensions/OldBugMove/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
# Max Kanat-Alexander <mkanat@bugzilla.org>

package Bugzilla::Extension::OldBugMove;

use 5.10.1;
use strict;
use warnings;

use constant NAME => 'OldBugMove';
__PACKAGE__->NAME;
4 changes: 4 additions & 0 deletions extensions/OldBugMove/Extension.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
# Max Kanat-Alexander <mkanat@bugzilla.org>

package Bugzilla::Extension::OldBugMove;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Extension);
use Bugzilla::Constants;
use Bugzilla::Error;
Expand Down
2 changes: 2 additions & 0 deletions extensions/OldBugMove/lib/Params.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

package Bugzilla::Extension::OldBugMove::Params;

use 5.10.1;
use strict;
use warnings;

use Bugzilla::Config::Common;

Expand Down
3 changes: 3 additions & 0 deletions extensions/ShadowBugs/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Extension::ShadowBugs;

use 5.10.1;
use strict;
use warnings;

use constant NAME => 'ShadowBugs';
use constant REQUIRED_MODULES => [];
Expand Down
2 changes: 2 additions & 0 deletions extensions/ShadowBugs/Extension.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@

package Bugzilla::Extension::ShadowBugs;

use 5.10.1;
use strict;
use warnings;

use base qw(Bugzilla::Extension);

Expand Down
Loading