diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-10-11 16:46:58 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-10-11 16:46:58 +0100 |
commit | 40f079e4ba87bbce38391ba59e0641683229c36e (patch) | |
tree | 01a7576a61d9869b1c22b169ec4268e9f89e6087 | |
parent | 1215d226499154c9592f3aa4d1ead541efbfae15 (diff) |
Fix missing site_title.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyBarangay.pm | 5 | ||||
-rw-r--r-- | templates/web/fixmybarangay/header.html | 2 | ||||
-rw-r--r-- | templates/web/fixmystreet/header.html | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm index e2a8e9f87..849a53b2b 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm @@ -29,11 +29,6 @@ sub disambiguate_location { }; } -sub site_title { - my ($self) = @_; - return 'FixMyBarangay'; -} - sub only_authed_can_create { return 1; } diff --git a/templates/web/fixmybarangay/header.html b/templates/web/fixmybarangay/header.html index c3ddd154e..2557a26cb 100644 --- a/templates/web/fixmybarangay/header.html +++ b/templates/web/fixmybarangay/header.html @@ -55,7 +55,7 @@ <div class="table-cell"> <header id="site-header" role="banner"> <div class="container"> - <a href="/" id="site-logo">[% c.cobrand.site_title %]</a> + <a href="/" id="site-logo">FixMyBarangay</a> <a href="#main-nav" id="nav-link">Main Navigation</a> </div> </header> diff --git a/templates/web/fixmystreet/header.html b/templates/web/fixmystreet/header.html index cb6ca8c43..8d10d4c04 100644 --- a/templates/web/fixmystreet/header.html +++ b/templates/web/fixmystreet/header.html @@ -36,7 +36,7 @@ <div class="table-cell"> <header id="site-header" role="banner"> <div class="container"> - <a href="/" id="site-logo">[% c.cobrand.site_title %]</a> + <a href="/" id="site-logo">FixMyStreet</a> <a href="#main-nav" id="nav-link">Main Navigation</a> </div> </header> |