import v1.1.0_beta1 | 2009-08-21
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user