aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorM Somerville <matthew-github@dracos.co.uk>2020-08-17 12:54:24 +0100
committerM Somerville <matthew-github@dracos.co.uk>2020-08-17 12:54:27 +0100
commitf28ae32f1591ca3bb01feb1be28737b9a416c0a9 (patch)
treed01cb632b6146f2b90092b34ee7e4887cd6d1ba8
parente268e2b893aaf8a99e457c085e9c77d140b77233 (diff)
[Bromley] Use Unicode nbsp character directly.
This avoids it being escaped by the template.
-rw-r--r--perllib/FixMyStreet/Cobrand/Bromley.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bromley.pm b/perllib/FixMyStreet/Cobrand/Bromley.pm
index 90e5895d5..859484a4a 100644
--- a/perllib/FixMyStreet/Cobrand/Bromley.pm
+++ b/perllib/FixMyStreet/Cobrand/Bromley.pm
@@ -337,7 +337,7 @@ sub add_admin_subcategories {
foreach (@{$subcats{$_->{id}}}) {
push @new_contacts, {
id => $_->{key},
- category => ("&nbsp;" x 4) . $_->{name},
+ category => (" " x 4) . $_->{name}, # nbsp
active => $active_contacts{$_->{key}},
};
}