diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-30 22:10:04 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:28 +0200 |
commit | 00338f9dca97fd7b48d96201fd607cf460c385ff (patch) | |
tree | f88bfad7483e6b7432fdf4a2af5907efead59954 /apps/encryption/templates | |
parent | 99255ff3a92b2d242f3c723979341951a303f83d (diff) | |
download | nextcloud-server-00338f9dca97fd7b48d96201fd607cf460c385ff.tar.gz nextcloud-server-00338f9dca97fd7b48d96201fd607cf460c385ff.zip |
Removing files_encryption left overs
Diffstat (limited to 'apps/encryption/templates')
-rw-r--r-- | apps/encryption/templates/settings-admin.php | 2 | ||||
-rw-r--r-- | apps/encryption/templates/settings-personal.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/templates/settings-admin.php b/apps/encryption/templates/settings-admin.php index 616c593f6fb..b64e75512e7 100644 --- a/apps/encryption/templates/settings-admin.php +++ b/apps/encryption/templates/settings-admin.php @@ -7,7 +7,7 @@ script('core', 'multiselect'); <form id="encryption" class="section"> <h2><?php p($l->t('ownCloud basic encryption module')); ?></h2> - <?php if($_["initStatus"] === \OCA\Files_Encryption\Session::NOT_INITIALIZED): ?> + <?php if(!$_["initStatus"]): ?> <?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?> <?php else: ?> <p id="encryptionSetRecoveryKey"> diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php index a28df9ac0ec..b7aa0239eea 100644 --- a/apps/encryption/templates/settings-personal.php +++ b/apps/encryption/templates/settings-personal.php @@ -5,7 +5,7 @@ <form id="encryption" class="section"> <h2><?php p($l->t('ownCloud basic encryption module')); ?></h2> - <?php if ( $_["initialized"] === \OCA\Files_Encryption\Session::NOT_INITIALIZED ): ?> + <?php if ($_["initialized"] === \OCA\Files_Encryption\Session::NOT_INITIALIZED ): ?> <?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?> |