Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix edit_role action
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jul 14, 2016
1 parent 3c50dbb commit ede79b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/access.ajxp_conf/src/RolesManager.php
Expand Up @@ -280,7 +280,7 @@ public function rolesActions(ServerRequestInterface $requestInterface, ResponseI
}

// Make sure it's utf8
$data["ALL"] = array_merge($data["ALL"], [
$data["ALL"] = array_merge((isSet($data["ALL"]) ? $data["ALL"]: []), [
"PLUGINS_SCOPES" => [
"GLOBAL_TYPES" => ["conf", "auth", "authfront", "log", "mq", "notifications", "gui", "sec"],
"GLOBAL_PLUGINS" => ["action.avatar", "action.disclaimer", "action.scheduler", "action.skeleton", "action.updater"]
Expand Down

0 comments on commit ede79b8

Please sign in to comment.