Доступна к загрузке Joomla 4.1.4. Это релиз с исправлениями ошибок и улучшениями для серий Joomla 4.0.x.
Сообщество Joomla!, объявляется сбор средств для помощи нашему камраду Болотову Сергею, на форуме - voland, создатель бота Ванга, повелитель минусов на форуме )).
У тех, кто имеет опыт разработки под Joomla есть шанс рассказать о любимой CMS, прокачать личный бренд и заработать.
// resize to thumbnail... if(!$this->resizeImage($file, $thumbfile, $this->_thumbwidth, $this->_thumbheight, $filename)){ $this->raiseError("Error: resizing thumbnail image failed."); return false; }
// resize to thumbnail...// resize thumb fix - check if the image file is bigger than allowed thumbnail if($imginfo[0] > $this->_thumbwidth || $imginfo[1] > $this->_maxheight){ if(!$this->resizeImage($file, $thumbfile, $this->_thumbwidth, $this->_thumbheight, $filename)){ $this->raiseError("Error: resizing thumbnail image failed."); return false; }// resize thumb fix - else, just copy the file to the thumbnail file } else { if (!@copy($file, $thumbfile)){ // some error occured while copying the file to the thumbnail file $this->raiseError("Error occurred copying the uploaded file to the thumbnail."); return false; } }