forked from extern/egroupware
Fix bug in link handling that lost extra vars when extra vars are already in url
This commit is contained in:
parent
868614fd23
commit
5513df1277
@ -273,7 +273,8 @@ egw.extend('links', egw.MODULE_GLOBAL, function() {
|
||||
}
|
||||
else
|
||||
{
|
||||
if (othervars) _extravars += (_extravars?'&':'').othervars;
|
||||
if (!_extravars) _extravars = '';
|
||||
if (othervars) _extravars += (_extravars?'&':'')+othervars;
|
||||
}
|
||||
|
||||
// parse extravars string into the vars array
|
||||
|
Loading…
Reference in New Issue
Block a user