Hi guys,
if you ant to add my fix to file :
1. find line
if (($files['image']['error'] == 0 || $existingImage) && !JRequest::getBool('del_image'))
{
2. insert there
if (!empty($image)){ //added check if $image is empty
3 find
else
{
$mainframe->enqueueMessage(JText::_('K2_IMAGE_WAS_NOT_UPLOADED'), 'notice');
}
4. put
}// end check if $image is empty
All other elements are from original file.
You can also try to check it with WinMerge.