[391054] New Server Wizard non-default name fails
diff --git a/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html b/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
index c447d31..e79c2cf 100644
--- a/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
+++ b/features/org.eclipse.wst.server_ui.feature.patch/buildnotes_org.eclipse.wst.server_ui.feature.patch.html
@@ -28,4 +28,5 @@
 <p>Bug <a href='https://bugs.eclipse.org/390698'>390698</a>. Runtime search function results in duplicate entries on Server Runtime Environments preferences page</p>
 <p>Bug <a href='https://bugs.eclipse.org/390702'>390702</a>. ServerToolTip too aggressive at opening tooltips</p>
 <p>Bug <a href='https://bugs.eclipse.org/390705'>390705</a>. ServerToolTip escape on focussed tooltip not working perfectly</p>
+<p>Bug <a href='https://bugs.eclipse.org/391054'>391054</a>. New Server Wizard non-default name fails</p>
 </body></html>
\ No newline at end of file
diff --git a/features/org.eclipse.wst.server_ui.feature.patch/feature.properties b/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
index 3b0b9dc..c499703 100644
--- a/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
+++ b/features/org.eclipse.wst.server_ui.feature.patch/feature.properties
@@ -40,6 +40,7 @@
 Bug https://bugs.eclipse.org/390698 Runtime search function results in duplicate entries on Server Runtime Environments preferences page\n\
 Bug https://bugs.eclipse.org/390702 ServerToolTip too aggressive at opening tooltips \n\
 Bug https://bugs.eclipse.org/390705 ServerToolTip escape on focussed tooltip not working perfectly\n\
+Bug https://bugs.eclipse.org/391054 New Server Wizard non-default name fails\n\
 \n\
 # "copyright" property - text of the "Feature Update Copyright"
 copyright=\
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
index 45a26d8..9e81277 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/wizard/page/NewManualServerComposite.java
@@ -243,7 +243,7 @@
 				String name = serverName.getText();
 								
 				IServerType selectedServerType = serverTypeComposite.getSelectedServerType();
-				if (validate(selectedServerType)) {
+				if (!validate(selectedServerType)) {
 					// Do not set the server name if it is invalid
 					return;			
 				}