diff options
author | Struan Donald <struan@exo.org.uk> | 2012-08-22 17:50:48 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-08-22 17:50:48 +0100 |
commit | e7f56019f2f554c6ad9984b2a99c8ae6aa3c9c8e (patch) | |
tree | acee219248057ee88a5fe07123c6d97a6976fb30 | |
parent | 89e9282ee21295b08f02667eb2552bdf7b211b10 (diff) |
area_types now returns array ref
-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 1092a5f07..3961e4dc1 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm @@ -30,7 +30,7 @@ sub country { } sub area_types { - return ( 'BGY' ); + return [ 'BGY' ]; } sub disambiguate_location { |