diff options
author | Dave Arter <davea@mysociety.org> | 2016-06-15 14:05:42 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-06-15 14:11:07 +0100 |
commit | 986fcfb9917ad32bbbe059d9f8061f806039e5fa (patch) | |
tree | 9705068d4b25ba212d3c93c883ed3f4ffdad0d81 /perllib/FixMyStreet/Cobrand/FixMyStreet.pm | |
parent | b5b3b8e3cee367a8f82b4179a5d03f4d30e1215e (diff) |
Remove stringify call from template paths
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/FixMyStreet.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyStreet.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm index d3de9da3a..61011a414 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm @@ -7,13 +7,13 @@ use constant COUNCIL_ID_BROMLEY => 2482; sub path_to_web_templates { my $self = shift; return [ - FixMyStreet->path_to( 'templates/web/fixmystreet.com' )->stringify, + FixMyStreet->path_to( 'templates/web/fixmystreet.com' ), ]; } sub path_to_email_templates { my ( $self, $lang_code ) = @_; return [ - FixMyStreet->path_to( 'templates', 'email', 'fixmystreet.com')->stringify, + FixMyStreet->path_to( 'templates', 'email', 'fixmystreet.com'), ]; } |