fix wrong context causing eg. attachments to mail to no longer work

This commit is contained in:
Ralf Becker
2021-03-08 21:20:11 +02:00
parent 1fdec427d9
commit d2626085f6
2 changed files with 3 additions and 3 deletions

View File

@@ -478,5 +478,5 @@ var exports = {};
*/
function et2_call(_func)
{
return egw.applyFunc(_func, [].slice.call(arguments, 1));
return egw.applyFunc(_func, [].slice.call(arguments, 1), window);
}