Html Tag issue in renderItems

Issue #2 new
Former user created an issue
            if ($value['text'] != '')
                echo Html::tag('span', array(), $value['text']);

The third part should be an array of attributes (key => value)

I changed it as follows

echo Html::tag('span', $value['text'],[]);

Comments (0)

  1. Log in to comment