diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-18 23:46:58 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-18 23:46:58 +0200 |
commit | de8d0783ed24adb25f4835cfdbccfd6253d4ebf0 (patch) | |
tree | 49fe35a7a92a8146f3d7560cb9516a28ad5835a6 /settings/changepassword | |
parent | 6b1843d91b88ef0d928c683e1cc3f87a7f1b90ff (diff) | |
download | nextcloud-server-de8d0783ed24adb25f4835cfdbccfd6253d4ebf0.tar.gz nextcloud-server-de8d0783ed24adb25f4835cfdbccfd6253d4ebf0.zip |
fixing syntax error - it it that hard to test own code?
Diffstat (limited to 'settings/changepassword')
-rw-r--r-- | settings/changepassword/controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index 1ecb644a96c..e8c2a1943f3 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -89,7 +89,7 @@ class Controller { )); } elseif (!$result && !$recoveryPasswordSupported) { $l = new \OC_L10n('settings'); - \OC_JSON::error(array("data" => array( $l->t("message" => "Unable to change password" ) ))); + \OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change password" ) ))); } else { \OC_JSON::success(array("data" => array( "username" => $username ))); } |