Skip to content

Commit

Permalink
NavigationConfigForm: Fix method getItemConfig()
Browse files Browse the repository at this point in the history
refs #10246
  • Loading branch information
Johannes Meyer committed Sep 29, 2015
1 parent d2d6815 commit 7901601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/forms/Navigation/NavigationConfigForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,6 @@ protected function getItemConfig($type, $username = null)
$configName = $type . 's';
}

return Config::app($username ? "preferences/$username/" : 'navigation/' . $configName);
return Config::app(($username ? "preferences/$username/" : 'navigation/') . $configName);
}
}

0 comments on commit 7901601

Please sign in to comment.