4
Problème ImportExport avec le nouveau destructeur de Varien_Image_Adapter_Gd2 dans 1.9.2.0
Quelqu'un peut-il expliquer à quoi sert le code suivant introduit entre Magento CE 1.9.1.0 et 1.9.2.0? class Varien_Image_Adapter_Gd2: public function __construct() { // Initialize shutdown function register_shutdown_function(array($this, 'destruct')); } /** * Destroy object image on shutdown */ public function destruct() { @imagedestroy($this->_imageHandler); } Une fois ces deux fonctions ajoutées, notre …