mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 23:34:08 +02:00
parent
8b5bc6950b
commit
b39d9d6746
@ -60,10 +60,12 @@ class LinkTransformer extends HTMLPurifier_AttrTransform
|
||||
$attr['class'] = 'with-thumbnail';
|
||||
}
|
||||
|
||||
if ((! isset($attr['target']) || ! in_array($attr['target'], ['_blank', '_self']))
|
||||
&& ($useIframe || $url->isExternal())
|
||||
) {
|
||||
$attr['href'] = Url::fromPath('iframe', ['url' => $url])->getAbsoluteUrl();
|
||||
if ((! isset($attr['target']) || ! in_array($attr['target'], ['_blank', '_self']))) {
|
||||
if ($useIframe) {
|
||||
$attr['href'] = Url::fromPath('iframe', ['url' => $url])->getAbsoluteUrl();
|
||||
} elseif ($url->isExternal()) {
|
||||
$attr['target'] = '_blank';
|
||||
}
|
||||
}
|
||||
|
||||
return $attr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user