@@ 32-35 (lines=4) @@ | ||
29 | } |
|
30 | } |
|
31 | ||
32 | foreach ($items as $item) { |
|
33 | $return .= is_array($item) ? self::render($item, |
|
34 | false) : (count($items) > 1 ? "<li>$item</li>" : $item); |
|
35 | } |
|
36 | ||
37 | if ($wrap) { |
|
38 | if (count($items) > 1) { |
@@ 49-51 (lines=3) @@ | ||
46 | } |
|
47 | } |
|
48 | ||
49 | foreach ($items as $item) { |
|
50 | $return .= is_array($item) ? self::render($item, $type, false) : (count($items) > 1 ? "<li>$item</li>" : $item); |
|
51 | } |
|
52 | ||
53 | if ($wrap) { |
|
54 | if (count($items) > 1) { |