diff options
author | Gervase Markham <gerv@gerv.net> | 2016-01-15 15:42:22 +0100 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2016-01-15 15:42:22 +0100 |
commit | 513b4458b42e7f20ee0e57995c339c2dd6c495e7 (patch) | |
tree | 75b7651e9ad444350db2ee76e14afbf4d8887e72 /extensions | |
parent | 933fe72425f6e657c152950246735370f0f06dcf (diff) | |
download | bugzilla-513b4458b42e7f20ee0e57995c339c2dd6c495e7.tar.gz bugzilla-513b4458b42e7f20ee0e57995c339c2dd6c495e7.tar.xz |
Bug 922549: Bugzilla::Migrate.pm should provide hook in load function. r=gerv. (review cleanups)
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Example/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index ad96066f7..40ee9c2d1 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -638,7 +638,7 @@ sub mailer_before_send { sub migrate_modules { my ($self, $args) = @_; $args->{path} = bz_locations->{'extensionsdir'} . "/Example/lib/Migrate"; - $args->{prefix} = "Bugzilla::Extension::Example:Migrate"; + $args->{prefix} = "Bugzilla::Extension::Example::Migrate"; } sub object_before_create { |