1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +02:00

Meta-tag viewport fix and more.

This commit is contained in:
Cameron 2019-07-23 17:13:07 -07:00
parent 75086e8a71
commit f4a47d44e9

View File

@ -4296,7 +4296,10 @@ class eResponse
//TODO need an option that allows subsequent entries to overwrite existing ones.
//ie. 'description' and 'keywords' should never be duplicated, but overwritten by plugins and other non-pref-based meta data.
$attr = array();
if(null !== $name)
@ -4323,9 +4326,19 @@ class eResponse
else $attr = $extended;
}
$key = ($name === 'keywords') ? $name : null; // prevent multiple tags.
if(!empty($attr)) $this->_meta[$key] = $attr;
if(!empty($attr))
{
if($name === 'keywords') // prevent multiple keyword tags.
{
$this->_meta['keywords'] = $attr;
}
else
{
$this->_meta[] = $attr;
}
}
return $this;
}
@ -4351,6 +4364,8 @@ class eResponse
$this->setMeta('keywords', implode(',',$tmp3));
}
e107::getDebug()->log($this->_meta);
foreach ($this->_meta as $attr)