Fix disabled name input in tasklist/notebook folder creation dialog (#5169)

This commit is contained in:
Aleksander Machniak 2015-07-29 11:47:01 -04:00
parent d553105b62
commit cd0efb5ad9
3 changed files with 3 additions and 3 deletions

View file

@ -505,7 +505,7 @@ function rcube_kolab_notes_ui(settings)
$dialog.dialog('close');
}
var list = me.notebooks[id] || { name:'', editable:true };
var list = me.notebooks[id] || { name:'', editable:true, rights: 'riwta' };
var form, name;
$dialog.html(rcmail.get_label('loading'));

View file

@ -209,5 +209,5 @@ $labels['itipresponseerror'] = 'Failed to send the response to this task assignm
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
$labels['sentresponseto'] = 'Successfully sent assignment response to $mailto';
$labels['successremoval'] = 'The task has been deleted successfully.';
$labels['invalidlistproperties'] = 'Invalid list properties! Please set a valid name.';
$labels['arialabelsortmenu'] = 'Tasks sorting options';

View file

@ -2897,7 +2897,7 @@ function rcube_tasklist_ui(settings)
$dialog.dialog('close');
if (!list)
list = { name:'', editable:true, rights:'riwt', showalarms:true };
list = { name:'', editable:true, rights:'riwta', showalarms:true };
var editform, name, alarms;