import v1.1.0_beta1 | 2009-08-21

This commit is contained in:
2019-07-17 22:16:19 +02:00
parent 2c1152f0d3
commit 8dee6b1a10
2306 changed files with 251360 additions and 23428 deletions

View File

@ -22,9 +22,6 @@
/** Zend_View_Helper_Placeholder_Container_Standalone */
require_once 'Zend/View/Helper/Placeholder/Container/Standalone.php';
/** Zend_View_Exception */
require_once 'Zend/View/Exception.php';
/**
* Zend_Layout_View_Helper_HeadMeta
*
@ -332,8 +329,14 @@ class Zend_View_Helper_HeadMeta extends Zend_View_Helper_Placeholder_Container_S
: $this->getIndent();
$items = array();
foreach ($this as $item) {
$this->getContainer()->ksort();
try {
foreach ($this as $item) {
$items[] = $this->itemToString($item);
}
} catch (Zend_View_Exception $e) {
trigger_error($e->getMessage(), E_USER_WARNING);
return '';
}
return $indent . implode($this->_escape($this->getSeparator()) . $indent, $items);
}