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:
IOhannes m zmölnig 2023-02-14 13:51:39 +01:00
parent ff31aff5c2
commit 1e2b8c61cc

View File

@ -268,11 +268,11 @@ function amp_have_capability( $capability ) {
// List capabilities of particular user role // List capabilities of particular user role
$user = defined('YOURLS_USER') ? YOURLS_USER : NULL; $user = defined('YOURLS_USER') ? YOURLS_USER : NULL;
$user_caps = array(); $user_caps = array();
if ( amp_user_is_assigned ( $user ) ) if ( amp_user_is_assigned ( $user ) ) {
foreach ( $amp_role_capabilities as $rolename => $rolecaps ) foreach ( $amp_role_capabilities as $rolename => $rolecaps )
if ( amp_user_has_role( $user, $rolename ) ) if ( amp_user_has_role( $user, $rolename ) )
$user_caps = array_merge( $user_caps, $rolecaps ); $user_caps = array_merge( $user_caps, $rolecaps );
}
elseif ( isset( $amp_default_role ) && in_array ($amp_default_role, array_keys( $amp_role_capabilities ) ) ) elseif ( isset( $amp_default_role ) && in_array ($amp_default_role, array_keys( $amp_role_capabilities ) ) )
$user_caps = $amp_role_capabilities [ $amp_default_role ]; $user_caps = $amp_role_capabilities [ $amp_default_role ];