BUG 11037 Hook for session time setting SOLVED
- A hook is needed for a plugin to configure the session timeout. - Added hook for session of the time setting & Added setting of the Maximum lifetime cleaned up in the System option.
This commit is contained in:
@@ -101,12 +101,26 @@ Ext.onReady(function(){
|
||||
name : 'memory_limit',
|
||||
fieldLabel: _('ID_MEMORY_LIMIT'),
|
||||
allowBlank: false,
|
||||
autoCreate: {tag: "input", type: "text", autocomplete: "off", maxlength: 15 },
|
||||
value: sysConf.memory_limit,
|
||||
listeners:{
|
||||
change: function(){
|
||||
changeSettings();
|
||||
}
|
||||
}
|
||||
}, {
|
||||
xtype: 'numberfield',
|
||||
id : 'max_life_time',
|
||||
name : 'max_life_time',
|
||||
fieldLabel: _('ID_MAX_LIFETIME'),
|
||||
// allowBlank: false,
|
||||
autoCreate: {tag: "input", type: "text", autocomplete: "off", maxlength: 15 },
|
||||
value: sysConf.session_gc_maxlifetime,
|
||||
listeners:{
|
||||
change: function(){
|
||||
changeSettings();
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user