diff options
author | Dylan William Hardison <dylan@hardison.net> | 2014-09-30 17:46:37 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2014-09-30 17:46:37 +0200 |
commit | 977ba8ba7c0011c723a11b8a18982205fcac5462 (patch) | |
tree | e4b72e9f0093b04c9dad691b26f281fb95d185e6 /extensions | |
parent | 84b390d25f1427f7f10265f70e19157689c924c5 (diff) | |
download | bugzilla-977ba8ba7c0011c723a11b8a18982205fcac5462.tar.gz bugzilla-977ba8ba7c0011c723a11b8a18982205fcac5462.tar.xz |
Bug 1067810 - Review history page displays the wrong duration
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Review/lib/WebService.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/Review/lib/WebService.pm b/extensions/Review/lib/WebService.pm index cbcddfcc8..d16ab3dd8 100644 --- a/extensions/Review/lib/WebService.pm +++ b/extensions/Review/lib/WebService.pm @@ -126,6 +126,8 @@ sub flag_activity { $match_criteria{LIMIT} = $limit; $match_criteria{OFFSET} = $offset if defined $offset; + # Hide data until Bug 1073364 is resolved. + $match_criteria{WHERE} = { 'flag_when > ?' => '2014-09-23 21:17:16' }; # Throw error if no other parameters have been passed other than limit and offset if (!grep(!/^(LIMIT|OFFSET)$/, keys %match_criteria)) { |