Skip to content
Snippets Groups Projects
Commit de8d0783 authored by Thomas Müller's avatar Thomas Müller
Browse files

fixing syntax error - it it that hard to test own code?

parent 6b1843d9
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ class Controller { ...@@ -89,7 +89,7 @@ class Controller {
)); ));
} elseif (!$result && !$recoveryPasswordSupported) { } elseif (!$result && !$recoveryPasswordSupported) {
$l = new \OC_L10n('settings'); $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 { } else {
\OC_JSON::success(array("data" => array( "username" => $username ))); \OC_JSON::success(array("data" => array( "username" => $username )));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment