Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 948 → Rev 949

/sun/hostadmiral/trunk/src/ak/hostadmiral/core/action/LoginAction.java
28,7 → 28,7
DynaActionForm theForm = (DynaActionForm)form;
 
User user = UserManager.getInstance().loginUser(
(String)theForm.get("login"), (String)theForm.get("password"));
(String)theForm.get("login"), (String)theForm.get("password"), request.getRemoteAddr());
 
if(user == null) {
ActionErrors errors = new ActionErrors();