deshack/melany

Bootstrap_Walker Glyphicon issue

Closed this issue · 1 comments

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:

strpos( $item->attr_title, 'glyphicon' )

695cce5 doesn't fix the issue. strpos( $item->attr_title, 'glyphicon' ) returns 0 and is treated as false.
The right way to fix is:

strpos( $item->attr_title, 'glyphicon' ) !== false