NavigationConfigForm: Fix method getItemConfig()

refs #10246
This commit is contained in:
Johannes Meyer 2015-09-29 17:22:59 +02:00
parent d2d6815c92
commit 7901601f81
1 changed files with 1 additions and 1 deletions

View File

@ -879,6 +879,6 @@ class NavigationConfigForm extends ConfigForm
$configName = $type . 's';
}
return Config::app($username ? "preferences/$username/" : 'navigation/' . $configName);
return Config::app(($username ? "preferences/$username/" : 'navigation/') . $configName);
}
}