From de8d0783ed24adb25f4835cfdbccfd6253d4ebf0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Wed, 18 Sep 2013 23:46:58 +0200
Subject: [PATCH] fixing syntax error - it it that hard to test own code?

---
 settings/changepassword/controller.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php
index 1ecb644a96..e8c2a1943f 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 )));
 				}
-- 
GitLab