mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
for some wired reason row-id is initially "admin_ui::get_users::123" and after clicking on a group to change filter "admin::123", now picking last "::"-separated part, this needs to be fixed in eTemplate too
This commit is contained in:
parent
f349506191
commit
d47477ce36
@ -519,7 +519,7 @@ app.classes.admin = AppJS.extend(
|
||||
}
|
||||
else
|
||||
{
|
||||
params.account_id = _senders[0].id.substr(21); // remove admin_ui::get_users::
|
||||
params.account_id = _senders[0].id.split('::').pop(); // get last :: separated part
|
||||
}
|
||||
this.egw.open_link(this.egw.link('/index.php', params), 'admin', popup);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user