diff options
Diffstat (limited to 'inc/Menu')
-rw-r--r-- | inc/Menu/Item/AbstractItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Menu/Item/AbstractItem.php b/inc/Menu/Item/AbstractItem.php index f47cd0ef2..001dcf8ec 100644 --- a/inc/Menu/Item/AbstractItem.php +++ b/inc/Menu/Item/AbstractItem.php @@ -120,7 +120,7 @@ abstract class AbstractItem { $attr = buildAttributes($this->getLinkAttributes($classprefix)); $html = "<a $attr>"; $html .= '<span>' . hsc($this->getLabel()) . '</span>'; - $html .= inlinSVG($this->getSvg()); + $html .= inlineSVG($this->getSvg()); $html .= "</a>"; return $html; |