1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 13:17:24 +02:00

Fixes #1946 - System meta event added. 'system_meta_pre'

This commit is contained in:
Cameron
2016-10-26 17:55:59 -07:00
parent 9f45609cae
commit fe56126e3f

View File

@@ -4053,6 +4053,8 @@ class eResponse
public function renderMeta() public function renderMeta()
{ {
$attrData = ''; $attrData = '';
e107::getEvent()->trigger('system_meta_pre');
foreach ($this->_meta as $attr) foreach ($this->_meta as $attr)
{ {
@@ -4063,6 +4065,7 @@ class eResponse
} }
$attrData .= ' />'."\n"; $attrData .= ' />'."\n";
} }
return $attrData; return $attrData;
} }