mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
fix PHP 8.x error, if previous non-numeric textsize was set
This commit is contained in:
parent
a20a85309b
commit
4f5c259078
@ -121,7 +121,7 @@ class pixelegg_framework extends Api\Framework\Ajax
|
|||||||
}
|
}
|
||||||
";
|
";
|
||||||
$textsize = $GLOBALS['egw_info']['user']['preferences']['common']['textsize'];
|
$textsize = $GLOBALS['egw_info']['user']['preferences']['common']['textsize'];
|
||||||
if (!empty($textsize) && $textsize != '12')
|
if (!empty($textsize) && is_numeric($textsize) && $textsize != '12')
|
||||||
{
|
{
|
||||||
$iconSize = $textsize+4;
|
$iconSize = $textsize+4;
|
||||||
$ret['app_css'] .= "
|
$ret['app_css'] .= "
|
||||||
|
Loading…
Reference in New Issue
Block a user