mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-26 09:19:12 +01:00
fix bug in port configuration
This commit is contained in:
@@ -78,6 +78,7 @@ public class ScmConfiguration
|
||||
this.pluginUrl = other.pluginUrl;
|
||||
this.sslPort = other.sslPort;
|
||||
this.enableSSL = other.enableSSL;
|
||||
this.port = other.port;
|
||||
this.anonymousAccessEnabled = other.anonymousAccessEnabled;
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ Sonia.config.ScmConfigPanel = Ext.extend(Sonia.config.ConfigPanel,{
|
||||
name: 'servername',
|
||||
allowBlank: false
|
||||
},{
|
||||
xtype: 'textfield',
|
||||
xtype: 'numberfield',
|
||||
fieldLabel: 'Serverport',
|
||||
name: 'port',
|
||||
allowBlank: false
|
||||
@@ -120,10 +120,10 @@ Sonia.config.ScmConfigPanel = Ext.extend(Sonia.config.ConfigPanel,{
|
||||
name: 'enableSSL',
|
||||
inputValue: 'true'
|
||||
},{
|
||||
xtype: 'textfield',
|
||||
xtype: 'numberfield',
|
||||
fieldLabel: 'SSL Port',
|
||||
name: 'sslPort',
|
||||
vtype: 'alphanum'
|
||||
allowBlank: false
|
||||
}],
|
||||
|
||||
onSubmit: function(values){
|
||||
|
||||
Reference in New Issue
Block a user