diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-03-04 09:52:46 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-03-04 09:52:46 +0000 |
commit | b3d0eee6013f891f4579612fad012d590b4f6a97 (patch) | |
tree | 85b35e2614a02e51f2d68cfed599aee93aa56635 | |
parent | 067df363da4340300426efb90d7b0be01727266f (diff) |
Warnfix a string comparison, as might not be numeric.
-rw-r--r-- | perllib/FixMyStreet/SendReport/Open311.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/SendReport/Open311.pm b/perllib/FixMyStreet/SendReport/Open311.pm index b92aa8cfd..1ad7f5b05 100644 --- a/perllib/FixMyStreet/SendReport/Open311.pm +++ b/perllib/FixMyStreet/SendReport/Open311.pm @@ -43,7 +43,7 @@ sub send { my $revert = 0; # Extra bromley fields - if ( $row->bodies_str == 2482 ) { + if ( $row->bodies_str eq '2482' ) { $revert = 1; |