Add proper bracing around if-clause
php is not Python, and the indentation is meaningless for code-blocks. Closes: https://github.com/joshp23/YOURLS-AuthMgrPlus/issues/55
This commit is contained in:
parent
ff31aff5c2
commit
1e2b8c61cc
@ -268,11 +268,11 @@ function amp_have_capability( $capability ) {
|
||||
// List capabilities of particular user role
|
||||
$user = defined('YOURLS_USER') ? YOURLS_USER : NULL;
|
||||
$user_caps = array();
|
||||
if ( amp_user_is_assigned ( $user ) )
|
||||
if ( amp_user_is_assigned ( $user ) ) {
|
||||
foreach ( $amp_role_capabilities as $rolename => $rolecaps )
|
||||
if ( amp_user_has_role( $user, $rolename ) )
|
||||
$user_caps = array_merge( $user_caps, $rolecaps );
|
||||
|
||||
}
|
||||
elseif ( isset( $amp_default_role ) && in_array ($amp_default_role, array_keys( $amp_role_capabilities ) ) )
|
||||
$user_caps = $amp_role_capabilities [ $amp_default_role ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user