diff options
author | Christopher <kondou@ts.unde.re> | 2013-09-18 22:17:04 -0700 |
---|---|---|
committer | Christopher <kondou@ts.unde.re> | 2013-09-18 22:17:04 -0700 |
commit | ae4775a68315c2aaab3f15c8baf8dbd6ee8ccf7a (patch) | |
tree | 49fe35a7a92a8146f3d7560cb9516a28ad5835a6 | |
parent | 6b1843d91b88ef0d928c683e1cc3f87a7f1b90ff (diff) | |
parent | de8d0783ed24adb25f4835cfdbccfd6253d4ebf0 (diff) | |
download | nextcloud-server-ae4775a68315c2aaab3f15c8baf8dbd6ee8ccf7a.tar.gz nextcloud-server-ae4775a68315c2aaab3f15c8baf8dbd6ee8ccf7a.zip |
Merge pull request #4906 from owncloud/wtf-broken-code-was-merged-again-master
fixing syntax error - it it that hard to test own code?
-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 ))); } |