diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-05-20 15:33:22 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-05-20 15:34:19 +0100 |
commit | 2a46966377634888ee8347dd2904e4c205caab00 (patch) | |
tree | c772c9cf6ddd7c615443b5ba6d622601a1fe3ff3 | |
parent | 90c85900f37bf9514d9b88344c3e0d6f44e53067 (diff) |
[fixmystreet.com] Fix Unicode in fixtures.
-rwxr-xr-x | bin/fixmystreet.com/fixture | 1 | ||||
-rw-r--r-- | perllib/FixMyStreet/DB/Factories.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bin/fixmystreet.com/fixture b/bin/fixmystreet.com/fixture index 622bae018..c75cb53bf 100755 --- a/bin/fixmystreet.com/fixture +++ b/bin/fixmystreet.com/fixture @@ -7,6 +7,7 @@ use strict; use warnings; use v5.14; +use utf8; BEGIN { use File::Basename qw(dirname); diff --git a/perllib/FixMyStreet/DB/Factories.pm b/perllib/FixMyStreet/DB/Factories.pm index 5af9ed38f..05c56e394 100644 --- a/perllib/FixMyStreet/DB/Factories.pm +++ b/perllib/FixMyStreet/DB/Factories.pm @@ -1,6 +1,7 @@ use strict; use warnings; use v5.14; +use utf8; use FixMyStreet::DB; |