4
friend, I did this changes:
return $config = array(
'clickable' => 1,
'resize' => 1,
'max_width' => 450,
);
but in executed code, I still have this:
<img ... onload="JavaScript:if(this.width>300)this.width=300" ... >
even, I tried this:
return $config = array(
'clickable' => 0,
'resize' => 0,
);
'clickable' works, images r not links anymore, but still, r being resized!
what's the problem?