Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/Sky/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ public function setAssetsByPath($path)
}


/**
/**
* @return Array getGeoMetaData() returns an array of the geo meta tags and is
* array_merged to seoMetaContent() to output results with one function call
*/
Expand All @@ -1078,14 +1078,14 @@ public function getGeoMetaData()

$meta_geo = array(

'latitude' => 'latitude',
'longitude' => 'longitude',
'zipcode' => 'zipcode',
'city' => 'city',
'state' => 'state',
'country' => 'country',
'geo.position' => 'geo_position',
'geo.placename' => 'geo_placename',
'geo.region' => 'geo_region'
'geo.region' => 'geo_region',
'ICBM' => 'ICBM'

);
$geo = $this->seo->geo;
Expand All @@ -1102,7 +1102,7 @@ public function getGeoMetaData()
*/
public function seoMetaContent()
{
// <meta name="$key" /> => $this->seo[$value]
// <meta name="$key" /> => $this->seo[$value].
$meta_geo = $this->getGeoMetaData();
$meta = array(
'title' => 'title',
Expand Down