mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
If link is for just 1 id (normal case), then don't use an array for ID
This commit is contained in:
parent
9d8304a70e
commit
dcf0cf4e95
@ -782,7 +782,7 @@ var et2_link_entry = et2_inputWidget.extend(
|
||||
|
||||
_value = {
|
||||
app: split.shift(),
|
||||
id: split
|
||||
id: split.length == 1 ? split[0] : split
|
||||
};
|
||||
}
|
||||
else if(_value && this.options.only_app)
|
||||
|
Loading…
Reference in New Issue
Block a user