Avoid stored XSS in task external link
This commit is contained in:
parent
c20be8f5fa
commit
05f1d23d82
|
|
@ -11,7 +11,7 @@
|
||||||
<?= $link['type'] ?>
|
<?= $link['type'] ?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="<?= $link['url'] ?>" title="<?= $this->text->e($link['url']) ?>" target="_blank"><?= $this->text->e($link['title']) ?></a>
|
<a href="<?= $this->text->e($link['url']) ?>" title="<?= $this->text->e($link['url']) ?>" target="_blank"><?= $this->text->e($link['title']) ?></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?= $this->text->e($link['dependency_label']) ?>
|
<?= $this->text->e($link['dependency_label']) ?>
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
<?= $this->text->e($link['type']) ?>
|
<?= $this->text->e($link['type']) ?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="<?= $link['url'] ?>" title="<?= $this->text->e($link['url']) ?>" target="_blank"><?= $this->text->e($link['title']) ?><span class="ui-helper-hidden-accessible"> (<?= $this->text->e($link['url']) ?>)</span></a>
|
<a href="<?= $this->text->e($link['url']) ?>" title="<?= $this->text->e($link['url']) ?>" target="_blank"><?= $this->text->e($link['title']) ?><span class="ui-helper-hidden-accessible"> (<?= $this->text->e($link['url']) ?>)</span></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?= $this->text->e($link['dependency_label']) ?>
|
<?= $this->text->e($link['dependency_label']) ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue