Index: HtmlList.php =================================================================== --- HtmlList.php (revision 12741) +++ HtmlList.php (working copy) @@ -60,12 +60,12 @@ if ($escape) { $item = $this->view->escape($item); } - $list .= '
  • ' . $item . '
  • '; + $list .= '
  • ' . $item . '
  • ' . Zend_View_Helper_HtmlList::EOL ; } else { if (5 < strlen($list)) { - $list = substr($list, 0, strlen($list) - 5) . $this->htmlList($item, $ordered, $attribs, $escape) . ''; + $list = substr($list, 0, strlen($list) - 5) . $this->htmlList($item, $ordered, $attribs, $escape) . '' . Zend_View_Helper_HtmlList::EOL ; } else { - $list .= '
  • ' . $this->htmlList($item, $ordered, $attribs, $escape) . '
  • '; + $list .= '
  • ' . $this->htmlList($item, $ordered, $attribs, $escape) . '
  • ' . Zend_View_Helper_HtmlList::EOL ; } } } @@ -81,6 +81,6 @@ $tag = 'ol'; } - return '<' . $tag . $attribs . '>' . $list . ''; + return '<' . $tag . $attribs . '>' . Zend_View_Helper_HtmlList::EOL . $list . '' . Zend_View_Helper_HtmlList::EOL ; } }