mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
fix for Warning: Wrong parameter count for str_replace() in /usr/share/egroupware/phpgwapi/inc/class.html.inc.php on line 1061
This commit is contained in:
parent
df9e605367
commit
7025c0d91a
@ -1058,7 +1058,7 @@ class html
|
|||||||
$extra_styles = "display: inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$url',sizingMethod='image'); width: 1px; height: 1px;";
|
$extra_styles = "display: inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$url',sizingMethod='image'); width: 1px; height: 1px;";
|
||||||
if (strstr($options,'style="'))
|
if (strstr($options,'style="'))
|
||||||
{
|
{
|
||||||
$options = str_replace('style="','style="'.$extra_styles);
|
$options = str_replace('style="','style="'.$extra_styles, $options);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user