diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:05:56 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:05:56 +0200 |
commit | 42625a46be495ea1c60ac8fe8e13946fd9ed9732 (patch) | |
tree | 1b52fc65b8a5888f13f48226b2cb6672456c0b55 /apps/encryption/templates | |
parent | c56a273b39186c509c57ef6bec221d3c4e3d81d3 (diff) | |
download | nextcloud-server-42625a46be495ea1c60ac8fe8e13946fd9ed9732.tar.gz nextcloud-server-42625a46be495ea1c60ac8fe8e13946fd9ed9732.zip |
Remove spaces after method or function call
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/encryption/templates')
-rw-r--r-- | apps/encryption/templates/settings-personal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php index 41dacc534e6..47860b2f208 100644 --- a/apps/encryption/templates/settings-personal.php +++ b/apps/encryption/templates/settings-personal.php @@ -56,7 +56,7 @@ script('encryption', 'settings-personal'); id="userEnableRecoveryCheckbox" name="userEnableRecovery" value="1" - <?php echo ( $_["recoveryEnabledForUser"] ? 'checked="checked"' : '' ); ?> /> + <?php echo( $_["recoveryEnabledForUser"] ? 'checked="checked"' : '' ); ?> /> <label for="userEnableRecoveryCheckbox"><?php p( $l->t( "Enabled" ) ); ?></label> <br /> @@ -66,7 +66,7 @@ script('encryption', 'settings-personal'); id="userDisableRecoveryCheckbox" name="userEnableRecovery" value="0" - <?php echo ( $_["recoveryEnabledForUser"] === false ? 'checked="checked"' : '' ); ?> /> + <?php echo( $_["recoveryEnabledForUser"] === false ? 'checked="checked"' : '' ); ?> /> <label for="userDisableRecoveryCheckbox"><?php p( $l->t( "Disabled" ) ); ?></label> </p> <?php endif; ?> |