diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Buckinghamshire.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm index 360704d40..42cb52532 100644 --- a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm +++ b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm @@ -272,4 +272,12 @@ sub add_extra_area_types { sub is_two_tier { 1 } +sub should_skip_sending_update { + my ($self, $update ) = @_; + + # Bucks don't want to receive updates into Confirm that were made by anyone + # except the original problem reporter. + return $update->user_id != $update->problem->user_id; +} + 1; |