Commit 9a90d303 authored by Taylor Otwell's avatar Taylor Otwell

return empty string if no items in html list.

parent 09e456d2
......@@ -306,6 +306,8 @@ class HTML {
{
$html = '';
if (count($list) == 0) return $html;
foreach ($list as $key => $value)
{
// If the value is an array, we will recurse the function so that we can
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment