diff options
author | Florin Peter <github@florin-peter.de> | 2013-05-29 23:11:30 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-05-29 23:11:30 +0200 |
commit | 838fd1a20ab1769407c9800a833b9e112d7616e6 (patch) | |
tree | b746d6d058798ff567cc8d5fa0ab2dadcdd6944a /apps/files_encryption/ajax/adminrecovery.php | |
parent | 8c6eec7a8fa0036ad59af535a6cbead791671305 (diff) | |
download | nextcloud-server-838fd1a20ab1769407c9800a833b9e112d7616e6.tar.gz nextcloud-server-838fd1a20ab1769407c9800a833b9e112d7616e6.zip |
changed " to '
Diffstat (limited to 'apps/files_encryption/ajax/adminrecovery.php')
-rw-r--r-- | apps/files_encryption/ajax/adminrecovery.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/files_encryption/ajax/adminrecovery.php b/apps/files_encryption/ajax/adminrecovery.php index afc9ca984d9..6a0186d5a9b 100644 --- a/apps/files_encryption/ajax/adminrecovery.php +++ b/apps/files_encryption/ajax/adminrecovery.php @@ -20,17 +20,17 @@ $return = false; $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); -if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1") { +if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === '1') { $return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']); // Return success or failure if ($return) { - \OCP\JSON::success(array("data" => array("message" => $l->t('Recovery key successfully enabled')))); + \OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully enabled')))); } else { \OCP\JSON::error(array( - "data" => array( - "message" => $l->t( + 'data' => array( + 'message' => $l->t( 'Could not enable recovery key. Please check your recovery key password!') ) )); @@ -39,17 +39,17 @@ if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1 // Disable recoveryAdmin } elseif ( isset($_POST['adminEnableRecovery']) - && "0" === $_POST['adminEnableRecovery'] + && '0' === $_POST['adminEnableRecovery'] ) { $return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']); // Return success or failure if ($return) { - \OCP\JSON::success(array("data" => array("message" => $l->t('Recovery key successfully disabled')))); + \OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully disabled')))); } else { \OCP\JSON::error(array( - "data" => array( - "message" => $l->t( + 'data' => array( + 'message' => $l->t( 'Could not disable recovery key. Please check your recovery key password!') ) )); |