Pluxopolis / plxEditor

Barre d'outils wysiwyg pour PluXml
1 stars 6 forks source link

Media tool insert a link to media manager instead of image #6

Open luffah opened 7 months ago

luffah commented 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>