diff options
author | Byron Jones <bjones@mozilla.com> | 2014-03-11 05:29:50 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2014-03-11 05:29:50 +0100 |
commit | c4aa75649eb35ca9e20c82ea1df5b1904e803159 (patch) | |
tree | d1801b887dc5074c13d3c791f3b5a3b38b8ca4c2 /extensions/ContributorEngagement | |
parent | bf6de09347dac9282ac9ddf54dd96f8a06f2ef74 (diff) | |
download | bugzilla-c4aa75649eb35ca9e20c82ea1df5b1904e803159.tar.gz bugzilla-c4aa75649eb35ca9e20c82ea1df5b1904e803159.tar.xz |
Bug 981975: "Not a SCALAR reference" error when setting review flags
Diffstat (limited to 'extensions/ContributorEngagement')
-rw-r--r-- | extensions/ContributorEngagement/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/ContributorEngagement/Extension.pm b/extensions/ContributorEngagement/Extension.pm index aa8804034..def41b6ea 100644 --- a/extensions/ContributorEngagement/Extension.pm +++ b/extensions/ContributorEngagement/Extension.pm @@ -97,7 +97,7 @@ sub flag_end_of_update { Bugzilla->dbh->do("UPDATE profiles SET first_patch_reviewed_id = ? WHERE userid = ?", undef, $attachment->id, $attachment->attacher->id); - Bugzilla->memcached->clear({ table => 'profiles', id => $$attachment->attacher->id }); + Bugzilla->memcached->clear({ table => 'profiles', id => $attachment->attacher->id }); last; } } |