diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-06-07 15:28:10 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-06-07 15:28:10 +0200 |
commit | 57bb45991135c7d802bcf4036f5cc70080c59dcd (patch) | |
tree | ade526085ccd5244546c6a50f4a20c9c581ad9b5 /extensions/Voting | |
parent | 8a4dbd5cca23762df61f767473aa92d87167895b (diff) | |
download | bugzilla-57bb45991135c7d802bcf4036f5cc70080c59dcd.tar.gz bugzilla-57bb45991135c7d802bcf4036f5cc70080c59dcd.tar.xz |
Bug 1368764 - Component watching relationship constant not exported in template constants
Diffstat (limited to 'extensions/Voting')
-rw-r--r-- | extensions/Voting/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Voting/Extension.pm b/extensions/Voting/Extension.pm index 25266778c..90d4db1d3 100644 --- a/extensions/Voting/Extension.pm +++ b/extensions/Voting/Extension.pm @@ -215,7 +215,7 @@ sub bug_end_of_update { sub template_before_create { my ($self, $args) = @_; my $config = $args->{config}; - my $constants = $config->{CONSTANTS}; + my $constants = $config->{VARIABLES}{constants}; $constants->{REL_VOTER} = REL_VOTER; $constants->{CMT_POPULAR_VOTES} = CMT_POPULAR_VOTES; $constants->{DEFAULT_VOTES_PER_BUG} = DEFAULT_VOTES_PER_BUG; |