diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-09-30 20:53:09 +0100 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-09-30 20:53:09 +0100 |
commit | 5657b851489339e33d60798b42f3d075260cac59 (patch) | |
tree | 9c966778e573e6118ea33ef50043718da7f1a1c9 /perllib/FixMyStreet/App/Controller/Report/Update.pm | |
parent | 0806021813b2244a3359da633e83974b232dbd25 (diff) | |
parent | adb1f3b7e36b4ef0fea0439ef4be1186d36b377f (diff) |
Merge branch 'fmb-read-only' of ssh://git.mysociety.org/data/git/public/fixmystreet into fmb-read-only
Conflicts:
web/cobrands/fixmybarangay/message_manager.scss
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Report/Update.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/Update.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/Update.pm b/perllib/FixMyStreet/App/Controller/Report/Update.pm index 39d0ab225..da4cc33ca 100644 --- a/perllib/FixMyStreet/App/Controller/Report/Update.pm +++ b/perllib/FixMyStreet/App/Controller/Report/Update.pm @@ -77,7 +77,7 @@ sub update_problem : Private { } if ( $c->cobrand->can_support_problems && $c->user && $c->user->from_council && $c->req->param('external_source_id') ) { - $problem->interest_count( $problem->interest_count + 1 ); + $problem->interest_count( \'interest_count + 1' ); } $problem->lastupdate( \'ms_current_timestamp()' ); |