Hi,
Thanks for this nice plugin.
I have 3 problems :
1 - it works fine if i don’t check event ’OnDocFormPrerender’ (because if i do, the image is not when i reedit the content, save, then reedit the document).
But that’s not very important because unchecking OnDocFormPrerender resolved the prob.
2 - (the real problem),
all the alt artributs are lost (did not appear on the front size, but still here in manager)
3 - title attribut get truncated after a
(simple quote)
-------------------------------------------------- Edit ------------------------------------------------------------v
Prob 3 is ok, i changed lines 582, 586, 587 on directResize;php
foreach ($HTMLattr as $attr_k => $attr_v)
{
preg_match("/(".$attr_v.") *= *[\"][^\"]*[\"]/",$tpl,$array);// preg_match("/(".$attr_v.") *= *[\"|'][^\"']*[\"']/",$tpl,$array);
if (!empty($array[0]))
{
$tmp = eregi_replace($attr_k." *= *[\"]","",$array[0]); // $tmp = eregi_replace($attr_k." *= *[\"|']","",$array[0]);
$tmp = eregi_replace("[\"]*","",$tmp); // $tmp = eregi_replace("[\"']*","",$tmp);
$tpldata[$attr_k] = trim($tmp);
}
}