summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php')
-rw-r--r--plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php b/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php
index e4941537..7dcef493 100644
--- a/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php
+++ b/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php
@@ -249,7 +249,9 @@ class Jetpack_Geo_Location {
* Add the georss namespace during RSS generation.
*/
public function rss_namespace() {
- echo PHP_EOL . 'xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"' . PHP_EOL;
+ echo PHP_EOL . "\t" . 'xmlns:georss="http://www.georss.org/georss"';
+ echo PHP_EOL . "\t" . 'xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"';
+ echo PHP_EOL . "\t";
}
/**