changed " to '

This commit is contained in:
Florin Peter 2013-05-29 23:11:30 +02:00
parent 8c6eec7a8f
commit 838fd1a20a
3 changed files with 13 additions and 13 deletions

View File

@ -20,17 +20,17 @@ $return = false;
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); $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 = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']);
// Return success or failure // Return success or failure
if ($return) { 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 { } else {
\OCP\JSON::error(array( \OCP\JSON::error(array(
"data" => array( 'data' => array(
"message" => $l->t( 'message' => $l->t(
'Could not enable recovery key. Please check your recovery key password!') 'Could not enable recovery key. Please check your recovery key password!')
) )
)); ));
@ -39,17 +39,17 @@ if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1
// Disable recoveryAdmin // Disable recoveryAdmin
} elseif ( } elseif (
isset($_POST['adminEnableRecovery']) isset($_POST['adminEnableRecovery'])
&& "0" === $_POST['adminEnableRecovery'] && '0' === $_POST['adminEnableRecovery']
) { ) {
$return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']); $return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']);
// Return success or failure // Return success or failure
if ($return) { 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 { } else {
\OCP\JSON::error(array( \OCP\JSON::error(array(
"data" => array( 'data' => array(
"message" => $l->t( 'message' => $l->t(
'Could not disable recovery key. Please check your recovery key password!') 'Could not disable recovery key. Please check your recovery key password!')
) )
)); ));

View File

@ -28,7 +28,7 @@ $result = $util->checkRecoveryPassword($oldPassword);
if ($result) { if ($result) {
$keyId = $util->getRecoveryKeyId(); $keyId = $util->getRecoveryKeyId();
$keyPath = '/owncloud_private_key/' . $keyId . ".private.key"; $keyPath = '/owncloud_private_key/' . $keyId . '.private.key';
$view = new \OC\Files\View('/'); $view = new \OC\Files\View('/');
$proxyStatus = \OC_FileProxy::$enabled; $proxyStatus = \OC_FileProxy::$enabled;
@ -46,7 +46,7 @@ if ($result) {
// success or failure // success or failure
if ($return) { if ($return) {
\OCP\JSON::success(array("data" => array("message" => $l->t('Password successfully changed.')))); \OCP\JSON::success(array('data' => array('message' => $l->t('Password successfully changed.'))));
} else { } else {
\OCP\JSON::error(array("data" => array("message" => $l->t('Could not change the password. Maybe the old password was not correct.')))); \OCP\JSON::error(array('data' => array('message' => $l->t('Could not change the password. Maybe the old password was not correct.'))));
} }

View File

@ -15,7 +15,7 @@ use OCA\Encryption;
if ( if (
isset($_POST['userEnableRecovery']) isset($_POST['userEnableRecovery'])
&& (0 == $_POST['userEnableRecovery'] || "1" === $_POST['userEnableRecovery']) && (0 == $_POST['userEnableRecovery'] || '1' === $_POST['userEnableRecovery'])
) { ) {
$userId = \OCP\USER::getUser(); $userId = \OCP\USER::getUser();
@ -25,7 +25,7 @@ if (
// Save recovery preference to DB // Save recovery preference to DB
$return = $util->setRecoveryForUser($_POST['userEnableRecovery']); $return = $util->setRecoveryForUser($_POST['userEnableRecovery']);
if ($_POST['userEnableRecovery'] === "1") { if ($_POST['userEnableRecovery'] === '1') {
$util->addRecoveryKeys(); $util->addRecoveryKeys();
} else { } else {
$util->removeRecoveryKeys(); $util->removeRecoveryKeys();