diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-04-22 20:08:39 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-04-22 20:08:39 +0200 |
commit | 7ce9b17e54a32c62d92f0c5bf2101f5451a1560c (patch) | |
tree | 83b01b4c795c7c65e5284278c4ea054b3353be8c /extensions/Example | |
parent | 1ca0fef039a59342427d9e853a2d89ab6300c147 (diff) | |
download | bugzilla-7ce9b17e54a32c62d92f0c5bf2101f5451a1560c.tar.gz bugzilla-7ce9b17e54a32c62d92f0c5bf2101f5451a1560c.tar.xz |
Bug 539865: Make Bugzilla::Object pass $params to validators during create()
(implement VALIDATOR_DEPENDENCIES)
r=LpSolit, a=LpSolit
Diffstat (limited to 'extensions/Example')
-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 26a91b789..87061aa06 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -415,7 +415,7 @@ sub object_end_of_set { sub object_end_of_set_all { my ($self, $args) = @_; - my $object = $args->{'class'}; + my $object = $args->{'object'}; my $object_params = $args->{'params'}; # Note that this is a made-up class, for this example. |