mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 21:01:30 +02:00
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
|
else
|
||||||
{
|
{
|
||||||
if (othervars) _extravars += (_extravars?'&':'').othervars;
|
if (!_extravars) _extravars = '';
|
||||||
|
if (othervars) _extravars += (_extravars?'&':'')+othervars;
|
||||||
}
|
}
|
||||||
|
|
||||||
// parse extravars string into the vars array
|
// parse extravars string into the vars array
|
||||||
|
Loading…
x
Reference in New Issue
Block a user