diff options
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> |