mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix(API): Fix parameter name to match interface
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
cf2e3bc0ee
commit
2abb503e60
1 changed files with 2 additions and 2 deletions
|
|
@ -171,8 +171,8 @@ class NavigationManager implements INavigationManager {
|
|||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function setActiveEntry($id) {
|
||||
$this->activeEntry = $id;
|
||||
public function setActiveEntry($appId) {
|
||||
$this->activeEntry = $appId;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue