diff options
author | 2010-04-22 11:08:39 -0700 | |
---|---|---|
committer | 2010-04-22 11:08:39 -0700 | |
commit | 7ce9b17e54a32c62d92f0c5bf2101f5451a1560c (patch) | |
tree | 83b01b4c795c7c65e5284278c4ea054b3353be8c /extensions | |
parent | Bug 560862: defined(%hash) is deprecated in Perl 5.12, so stop using it. (diff) | |
download | bugzilla-7ce9b17e54a32c62d92f0c5bf2101f5451a1560c.tar.gz bugzilla-7ce9b17e54a32c62d92f0c5bf2101f5451a1560c.tar.bz2 bugzilla-7ce9b17e54a32c62d92f0c5bf2101f5451a1560c.zip |
Bug 539865: Make Bugzilla::Object pass $params to validators during create()
(implement VALIDATOR_DEPENDENCIES)
r=LpSolit, a=LpSolit
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 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. |