Fixed loading permissions from plugin.yaml

This commit is contained in:
alekseybobkov 2016-02-15 17:23:10 -08:00
parent fade9413d9
commit d58b6d4d51
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class PluginBase extends ServiceProviderBase
if (is_array($navigation)) {
array_walk_recursive($navigation, function(&$item, $key){
if ($key == 'url') {
if ($key === 'url') {
$item = Backend::url($item);
}
});