WebsiteBaker 2.13.9 R25 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
// free memoryimagedestroy($this->source_identifier);imagedestroy($identifier);// for PHP 8.0.0+ imagedestroy is no-op (https://php.watch/versions/8.0/gdimage)// and we have to use unset()if (version_compare(PHP_VERSION, '8.0.0', '>=')) { unset($this->source_identifier); unset($identifier);}
// free memoryunset($this->source_identifier, $identifier);
$this->source_identifier = null;
// free memory $this->source_identifier = null; return true;