Skip to content

Commit

Permalink
Fixed: wflow-consoleweb - Correction of r198 - Hash password is not w…
Browse files Browse the repository at this point in the history
…orking

git-svn-id: http://dev.joget.org/svn/jw-community/trunk@209 1bff935d-2fe2-40b7-b00f-c2aca69a7612
  • Loading branch information
owen committed Oct 24, 2011
1 parent 3d95442 commit 804e516
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2954,7 +2954,7 @@ public String consoleSettingGeneral(ModelMap map) {
}

@RequestMapping("/console/setting/general/loginHash")
public void packageList(Writer writer, @RequestParam(value = "callback", required = false) String callback, @RequestParam("username") String username, @RequestParam("password") String password) throws JSONException, IOException {
public void loginHash(Writer writer, @RequestParam(value = "callback", required = false) String callback, @RequestParam("username") String username, @RequestParam("password") String password) throws JSONException, IOException {
User user = new User();
user.setUsername(username);
user.setPassword(StringUtil.md5Base16(password));
Expand Down

0 comments on commit 804e516

Please sign in to comment.