mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Add a check on pngfix preference so the internal function doesn't always preempt pngfix.js settings
This commit is contained in:
parent
fe08487fd8
commit
742ed962f5
@ -909,7 +909,9 @@ class html
|
||||
{
|
||||
$options .= " $this->prefered_img_title=\"".$this->htmlspecialchars($title).'"';
|
||||
}
|
||||
if ($this->user_agent == 'msie' && $this->ua_version >= 5.5 && substr($url,-4) == '.png')
|
||||
|
||||
// This block makes pngfix.js useless, adding a check on disable_pngfix to have pngfix.js do its thing
|
||||
if ($this->user_agent == 'msie' && $this->ua_version >= 5.5 && substr($url,-4) == '.png' && ($GLOBALS['egw_info']['user']['preferences']['common']['disable_pngfix'] || !isset($GLOBALS['egw_info']['user']['preferences']['common']['disable_pngfix'])))
|
||||
{
|
||||
$extra_styles = "display: inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='$url',sizingMethod='image'); width: 1px; height: 1px;";
|
||||
if (false!==strpos($options,'style="'))
|
||||
|
Loading…
Reference in New Issue
Block a user