Skip to content

Commit

Permalink
Merge remote-tracking branch 'prolic/navigation'
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDotPro committed May 27, 2012
2 parents 3c47160 + 0793412 commit 3a1497d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/Zend/Navigation/Container.php
Expand Up @@ -367,7 +367,7 @@ public function __call($method, $arguments)
throw new Exception\BadMethodCallException(
sprintf(
'Bad method call: Unknown method %s::%s',
get_class($this),
get_called_class(),
$method
)
);
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Navigation/Page/AbstractPage.php
Expand Up @@ -1142,7 +1142,7 @@ public function toArray()
'privilege' => $this->getPrivilege(),
'active' => $this->isActive(),
'visible' => $this->isVisible(),
'type' => get_class($this),
'type' => get_called_class(),
'pages' => parent::toArray(),
));
}
Expand Down

0 comments on commit 3a1497d

Please sign in to comment.