Skip to content

Commit

Permalink
BadgeNavigationItemRenderer: Use view() instead of getView()
Browse files Browse the repository at this point in the history
refs #5600
  • Loading branch information
Johannes Meyer committed Sep 4, 2015
1 parent 044fe03 commit 8e24ec9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -107,8 +107,8 @@ protected function renderBadge()
if (($count = $this->getCount()) > 0) {
return sprintf(
'<div title="%s" class="badge-container"><span class="badge badge-%s">%s</span></div>',
$this->getView()->escape($this->getTitle()),
$this->getView()->escape($this->getState()),
$this->view()->escape($this->getTitle()),
$this->view()->escape($this->getState()),
$count
);
}
Expand Down

0 comments on commit 8e24ec9

Please sign in to comment.