Bootstrap_Walker applies the glyphicon markup every time the title attribute ($item->attr_title)is defined. This may cause errors, because not every title attribute is meant to set a glyphicon.
We need to add a check for glyphicons in the $item->attr_title through strpos(), like this:
Bootstrap_Walker
applies the glyphicon markup every time the title attribute ($item->attr_title
)is defined. This may cause errors, because not every title attribute is meant to set a glyphicon.We need to add a check for glyphicons in the
$item->attr_title
throughstrpos()
, like this: