Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 428482
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.server.useradmin.simple/src/org/eclipse/orion/internal/server/useradmin/simple/SimpleUserCredentialsService.java (-2 / +2 lines)
Lines 336-343 Link Here
336
			if (blocked.equals("true")) {
336
			if (blocked.equals("true")) {
337
				user.setBlocked(true);
337
				user.setBlocked(true);
338
			}
338
			}
339
			String emailConfirmation = userProfileNode.get(UserConstants.KEY_EMAIL_CONFIRMATION, "false");
339
			String emailConfirmation = userProfileNode.get(UserConstants.KEY_EMAIL_CONFIRMATION, "");
340
			if (emailConfirmation.equals("true")) {
340
			if (!emailConfirmation.equals("")) {
341
				user.setConfirmationId(emailConfirmation);
341
				user.setConfirmationId(emailConfirmation);
342
			}
342
			}
343
			String[] keys = userProfileNode.getUserProfileNode(USER_PROPERTIES).keys();
343
			String[] keys = userProfileNode.getUserProfileNode(USER_PROPERTIES).keys();

Return to bug 428482