diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-06-14 15:16:11 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-06-14 15:16:13 +0100 |
commit | 586f8ee0e0cd629c9b7a24463775e30fd0b77e8a (patch) | |
tree | dc2452049b4640ea71f574482f7cfa3be60d9e82 | |
parent | 146ddf3367c974a576b326e668cfcbf810a431c5 (diff) |
[UK] Three more councils use whitelabel templates.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bristol.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/EastHerts.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Warwickshire.pm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bristol.pm b/perllib/FixMyStreet/Cobrand/Bristol.pm index 177e2172b..dd9907bd1 100644 --- a/perllib/FixMyStreet/Cobrand/Bristol.pm +++ b/perllib/FixMyStreet/Cobrand/Bristol.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::Bristol; -use parent 'FixMyStreet::Cobrand::UKCouncils'; +use parent 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; diff --git a/perllib/FixMyStreet/Cobrand/EastHerts.pm b/perllib/FixMyStreet/Cobrand/EastHerts.pm index 806f9cc3c..7ca2e67cf 100644 --- a/perllib/FixMyStreet/Cobrand/EastHerts.pm +++ b/perllib/FixMyStreet/Cobrand/EastHerts.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::EastHerts; -use parent 'FixMyStreet::Cobrand::UKCouncils'; +use parent 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; diff --git a/perllib/FixMyStreet/Cobrand/Warwickshire.pm b/perllib/FixMyStreet/Cobrand/Warwickshire.pm index ff28bc8b3..1bdf919da 100644 --- a/perllib/FixMyStreet/Cobrand/Warwickshire.pm +++ b/perllib/FixMyStreet/Cobrand/Warwickshire.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::Warwickshire; -use base 'FixMyStreet::Cobrand::UKCouncils'; +use base 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; |