Skip to content

Commit

Permalink
fix(install): typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Nov 28, 2022
1 parent 817a9ec commit eac5d77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ protected function createMiniDashboardSummary() {
],
]]);

$this->adRightsToMiniDashboard($dashboard->fields['id']);
$this->addRightsToMiniDashboard($dashboard->fields['id']);
}

protected function createMiniDashboardBigNumbers() {
Expand Down Expand Up @@ -771,10 +771,10 @@ protected function createMiniDashboardBigNumbers() {
$x += ($w + $s);
}

$this->adRightsToMiniDashboard($dashboard->fields['id']);
$this->addRightsToMiniDashboard($dashboard->fields['id']);
}

protected function adRightsToMiniDashboard(int $dashboardId) {
protected function addRightsToMiniDashboard(int $dashboardId) {
// Give rights to all self service profiles
$profile = new Profile();
$helpdeskProfiles = $profile->find([
Expand Down

0 comments on commit eac5d77

Please sign in to comment.