Summary:
dest_file attribute in img tag on initial image file creation
Detailed Description:
class.cgsi_utils.php line 809:
$outp['dest_file'] = $dest_fname;
line 888 and further
// now we can build the tag.
$output = '<img';
foreach( $outp as $key => $value ) {
if( !$value && $key != 'alt' ) continue; // empty alt is
valid... stupid, but valid.
$output .= ' '.$key.'="'.$value.'"';
}
$output .= '/>';
$outp['output'] = $output;
<img class="news-image"
src="http://localhost/uploads/_CGSmartImage/img-22704fbf271e42ae220332ea0c720d96"
dest_file="C:\xampp7\htdocs\uploads\_CGSmartImage/img-22704fbf271e42ae220332ea0c720d96"
width="437" height="288" alt=""/>
This only seems to happen on creation of the image file. Maybe it's done on
purpose for debugging but can be unintentional left over too.