diff options
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/Default.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Default.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index 34ad5790f..8eb637879 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -24,10 +24,10 @@ Returns the path to the templates for this cobrand - by default sub path_to_web_templates { my $self = shift; - my $paths = []; - push @$paths, FixMyStreet->path_to( 'templates/web', $self->moniker )->stringify - unless $self->is_default; - push @$paths, FixMyStreet->path_to( 'templates/web/fixmystreet' )->stringify; + my $paths = [ + FixMyStreet->path_to( 'templates/web', $self->moniker )->stringify, + FixMyStreet->path_to( 'templates/web/fixmystreet' )->stringify, + ]; return $paths; } |