/* Code and email match - update user and display success */
else if( ( user = checkValidationCode( request ) ) != null ) {
forwardUrl = jspPath + "registerSuccess.jsp";
user.setValidated( true );
user.save();
request.setAttribute( "pageTitle", bzb.getLexicon().get( "registerSuccess" ) );
}
/* Show validation page with errors */
else {