diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-31 14:50:31 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:29 +0200 |
commit | bd933b1c85dff950e83591a6245ba2e15db33caf (patch) | |
tree | 6d094420a6b44c32484011d0f09976626596fc0b /apps/encryption/templates | |
parent | 6bd83c04227173ec97c08b3ca8e92812c8342f7e (diff) | |
download | nextcloud-server-bd933b1c85dff950e83591a6245ba2e15db33caf.tar.gz nextcloud-server-bd933b1c85dff950e83591a6245ba2e15db33caf.zip |
Adding app icon and fixing admin setting
Diffstat (limited to 'apps/encryption/templates')
-rw-r--r-- | apps/encryption/templates/settings-personal.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php index b7aa0239eea..cefd6f4ad5c 100644 --- a/apps/encryption/templates/settings-personal.php +++ b/apps/encryption/templates/settings-personal.php @@ -5,11 +5,11 @@ <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\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")); ?> - <?php elseif ( $_["initialized"] === \OCA\Files_Encryption\Session::INIT_EXECUTED ): ?> + <?php elseif ( $_["initialized"] === \OCA\Encryption\Session::INIT_EXECUTED ): ?> <p> <a name="changePKPasswd" /> <label for="changePrivateKeyPasswd"> @@ -41,7 +41,7 @@ <span class="msg"></span> </p> - <?php elseif ( $_["recoveryEnabled"] && $_["privateKeySet"] && $_["initialized"] === \OCA\Files_Encryption\Session::INIT_SUCCESSFUL ): ?> + <?php elseif ( $_["recoveryEnabled"] && $_["privateKeySet"] && $_["initialized"] === \OCA\Encryption\Session::INIT_SUCCESSFUL ): ?> <br /> <p id="userEnableRecovery"> <label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label> |