mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-23 19:31:53 +02:00
* Addressbook: Fix distribution list rename
This commit is contained in:
parent
c41a481110
commit
d2cb58196a
@ -881,11 +881,11 @@ class AddressbookApp extends EgwApp
|
||||
var lists = this.et2.getWidgetById('filter2');
|
||||
var list = lists.getValue() || 0;
|
||||
var value = null;
|
||||
for(var i = 0; i < lists.options.select_options.length; i++)
|
||||
for(var i = 0; i < lists.select_options.length; i++)
|
||||
{
|
||||
if(lists.options.select_options[i].value == list)
|
||||
if(lists.select_options[i].value == list)
|
||||
{
|
||||
value = lists.options.select_options[i];
|
||||
value = lists.select_options[i];
|
||||
}
|
||||
}
|
||||
Et2Dialog.show_prompt(
|
||||
@ -904,7 +904,7 @@ class AddressbookApp extends EgwApp
|
||||
if(result)
|
||||
{
|
||||
value.label = name;
|
||||
lists.set_select_options(lists.options.select_options);
|
||||
lists.select_options = lists.select_options;
|
||||
}
|
||||
}
|
||||
).sendRequest(true);
|
||||
|
Loading…
x
Reference in New Issue
Block a user