Open luffah opened 7 months ago
Hello,
as described in the title, when adding a stored picture, media tool insert a link to media manager instead of image.
I workarounded the issue by changing the core code, but not sure this is the best way.
core/admin/medias.php 269c269 < <a class="imglink" title="<?= $title ?>" href="#medias-table" data-src="<?= $v['path'] ?>"><?= $title . $v['extension'] ?></a> --- > <a class="imglink" title="<?= $title ?>" href="<?= $v['path'] ?>" data-src="<?= $v['path'] ?>"><?= $title . $v['extension'] ?></a>
Hello,
as described in the title, when adding a stored picture, media tool insert a link to media manager instead of image.
I workarounded the issue by changing the core code, but not sure this is the best way.