summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/ajax/changeRecoveryPassword.php
diff options
context:
space:
mode:
authorFlorin Peter <github@florin-peter.de>2013-05-27 17:26:58 +0200
committerFlorin Peter <github@florin-peter.de>2013-05-27 17:26:58 +0200
commit5d32e214b7c91d3710c46f522d82104cbad5b837 (patch)
tree9f17d101241dd527f8607670553dcb2391f104e9 /apps/files_encryption/ajax/changeRecoveryPassword.php
parent690bf9b8c4a0d9b5b4d7cfed6926ae9c794f30c6 (diff)
downloadnextcloud-server-5d32e214b7c91d3710c46f522d82104cbad5b837.tar.gz
nextcloud-server-5d32e214b7c91d3710c46f522d82104cbad5b837.zip
reformat code
Diffstat (limited to 'apps/files_encryption/ajax/changeRecoveryPassword.php')
-rw-r--r--apps/files_encryption/ajax/changeRecoveryPassword.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_encryption/ajax/changeRecoveryPassword.php b/apps/files_encryption/ajax/changeRecoveryPassword.php
index d990796a4fb..0103d933758 100644
--- a/apps/files_encryption/ajax/changeRecoveryPassword.php
+++ b/apps/files_encryption/ajax/changeRecoveryPassword.php
@@ -6,7 +6,7 @@
* See the COPYING-README file.
*
* @brief Script to change recovery key password
- *
+ *
*/
use OCA\Encryption;
@@ -15,7 +15,7 @@ use OCA\Encryption;
\OCP\JSON::checkAppEnabled('files_encryption');
\OCP\JSON::callCheck();
-$l=OC_L10N::get('core');
+$l = OC_L10N::get('core');
$return = false;
@@ -46,7 +46,7 @@ if ($result) {
// success or failure
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 {
- \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.'))));
} \ No newline at end of file