diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Default.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/UK.pm | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index 823278638..0323edfd5 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -883,7 +883,7 @@ sub get_report_stats { return 0; } sub get_council_sender { return 'Email' }; sub example_places { - return [ 'B2 4QA', 'Tib St, Manchester' ]; + return [ 'High Street', 'Main Street' ]; } sub process_extras {} diff --git a/perllib/FixMyStreet/Cobrand/UK.pm b/perllib/FixMyStreet/Cobrand/UK.pm index 7cbd9ecae..1c4c22fa6 100644 --- a/perllib/FixMyStreet/Cobrand/UK.pm +++ b/perllib/FixMyStreet/Cobrand/UK.pm @@ -13,6 +13,10 @@ sub enter_postcode_text { return _("Enter a nearby GB postcode, or street name and area"); } +sub example_places { + return [ 'B2 4QA', 'Tib St, Manchester' ]; +} + sub disambiguate_location { return { country => 'gb', |