aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perllib/FixMyStreet/Map/OSM/StreetView.pm2
-rw-r--r--web/js/map-fms.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/Map/OSM/StreetView.pm b/perllib/FixMyStreet/Map/OSM/StreetView.pm
index 87c335dd6..f37deaaae 100644
--- a/perllib/FixMyStreet/Map/OSM/StreetView.pm
+++ b/perllib/FixMyStreet/Map/OSM/StreetView.pm
@@ -22,7 +22,7 @@ sub base_tile_url {
}
sub copyright {
- 'Contains OS data © Crown copyright and database right 2013';
+ 'Contains OS data © Crown copyright and database right 2016';
}
1;
diff --git a/web/js/map-fms.js b/web/js/map-fms.js
index 6ef4265d0..c5bf70191 100644
--- a/web/js/map-fms.js
+++ b/web/js/map-fms.js
@@ -41,10 +41,10 @@ OpenLayers.Layer.BingUK = OpenLayers.Class(OpenLayers.Layer.Bing, {
var c = this.map.getCenter();
var in_uk = c ? this.in_uk(c) : true;
if (z >= 16 && in_uk) {
- copyrights = 'Contains Ordnance Survey data © Crown copyright and database right 2014';
+ copyrights = 'Contains Ordnance Survey data © Crown copyright and database right 2016';
} else {
logo = '<a href="https://www.bing.com/maps/"><img border=0 src="//dev.virtualearth.net/Branding/logo_powered_by.png"></a>';
- copyrights = '&copy; 2011 <a href="https://www.bing.com/maps/">Microsoft</a>. &copy; AND, Navteq, Ordnance Survey';
+ copyrights = '&copy; 2016 <a href="https://www.bing.com/maps/">Microsoft</a>. &copy; AND, Navteq, Ordnance Survey';
}
this._updateAttribution(copyrights, logo);
},