mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
Merge pull request #40075 from nextcloud/bugfix/noid/fix-parameter-name-change
fix(API): Fix parameter name to match interface
This commit is contained in:
commit
391bbbc14d
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