diff options
Diffstat (limited to 'perllib/FixMyStreet/DB/Result/Body.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/Result/Body.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/DB/Result/Body.pm b/perllib/FixMyStreet/DB/Result/Body.pm index 05d6bfcab..95debc910 100644 --- a/perllib/FixMyStreet/DB/Result/Body.pm +++ b/perllib/FixMyStreet/DB/Result/Body.pm @@ -229,7 +229,7 @@ sub cobrand_name { # Bromley Council" when making a report within Westminster on the TfL # cobrand. # If the current body is TfL then we always want to show TfL as the cobrand name. - return $self->name if $self->name eq 'TfL'; + return $self->name if $self->name eq 'TfL' || $self->name eq 'Highways England'; my $handler = $self->get_cobrand_handler; if ($handler && $handler->can('council_name')) { |