Hi,

The thumbnail tag returns an error if the filename contains spaces. This can changing line 5306 in cms/tags.php from:

Code: Select all
$thumbnail = k_resize_image( $src, $dest, $width, $height, $crop, $enforce_max, $quality, 'middle' /*crop from*/, 1/*check if thumb exists*/ )


to

Code: Select all
$thumbnail = k_resize_image( urldecode( $src ), $dest, $width, $height, $crop, $enforce_max, $quality, 'middle' /*crop from*/, 1/*check if thumb exists*/ );