Merge pull request #4906 from owncloud/wtf-broken-code-was-merged-again-master

fixing syntax error - it it that hard to test own code?
This commit is contained in:
Christopher 2013-09-18 22:17:04 -07:00
commit ae4775a683
1 changed files with 1 additions and 1 deletions

View File

@ -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 )));
}