Bring Your Business to Life › Support › Image Store › Thumbnails link broken › Reply To: Thumbnails link broken
May 21, 2012 at 2:55 am #47191
Keymaster
change your php notification settings or change the following links in the image.php file
$ext = end( explode( '.', basename( $this->image_dir ) ) );
for
$extarray = explode( '.', basename( $this->image_dir ) ); $ext = end( $extarray );
do_action( 'ims_apply_color_filter', &$image );
for
do_action( 'ims_apply_color_filter', $image );