diff options
author | Dave Whiteland <dave@mysociety.org> | 2013-03-13 22:19:40 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2013-03-13 22:19:40 +0000 |
commit | c4637a42cc8eae31cc6c0d22cb8f465ea9824363 (patch) | |
tree | 824728471f6b778668d29fede0ea34c3720490e8 | |
parent | f93f38c0cd21ecf3e90bd926a67b9e798c80e0d0 (diff) |
FMB council_id should be string not array
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyBarangay.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm index 1eda6cf43..c7535f856 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm @@ -34,7 +34,7 @@ sub only_authed_can_create { } # effectively allows barangay staff to hide reports -sub council_id { return [ 1, 2 ]; } +sub council_id { return '1,2' ; } sub areas_on_around { return [ 1, 2 ]; |