"fix tiny mail window, because felamimail uses egw_getWindowOuterHeight() instead of a fixed height given as number"

This commit is contained in:
Ralf Becker 2010-05-09 09:41:38 +00:00
parent 91cfd18e16
commit 5a47d445e8

View File

@ -403,7 +403,7 @@ abstract class egw_framework
if (($popup = egw_link::is_popup($app,'add')))
{
list($w,$h) = explode('x',$popup);
$action = "window.open('$link','_blank','width=$w,height=$h,location=no,menubar=no,toolbar=no,scrollbars=yes,status=yes');";
$action = "window.open('$link','_blank','width='+$w+',height='+$h+',location=no,menubar=no,toolbar=no,scrollbars=yes,status=yes');";
}
else
{