Details
Description
Zend_View_Helper_HtmlList doesn't follow coding standards here:
Index: I:/xampp/php/PEAR/Zend15/library/Zend/View/Helper/HtmlList.php
===================================================================
--- I:/xampp/php/PEAR/Zend15/library/Zend/View/Helper/HtmlList.php (revision 8854)
+++ I:/xampp/php/PEAR/Zend15/library/Zend/View/Helper/HtmlList.php (working copy)
@@ -57,7 +57,9 @@
foreach ($items as $item) {
if (!is_array($item)) {
- if ($escape) $item = $this->view->escape($item);
+ if ($escape) {
+ $item = $this->view->escape($item);
+ }
$list .= '<li>' . $item . '</li>';
} else {
if (5 < strlen($list)) {
Please categorize/fix as needed.