If anyone can fix it.
I will make a new fixed zip version and upload there for other using, this is a good modules that I am using many year since 2007 with ZC 1.3.X until now I see this PHP Deprecated log
If anyone can fix it.
I will make a new fixed zip version and upload there for other using, this is a good modules that I am using many year since 2007 with ZC 1.3.X until now I see this PHP Deprecated log
preg_split has a little different way of specifying its associated regex. Instead of
you'll need to specify a starting and ending character in the regex for the function to work properly:Code:$shipping = $this->determineShipping(preg_split("[:,]" , constant('MODULE_SHIPPING_MZMT_GEOZONE_' . $this->delivery_geozone . '_TABLE_' . $j)));
Code:$shipping = $this->determineShipping(preg_split("/[:,]/" , constant('MODULE_SHIPPING_MZMT_GEOZONE_' . $this->delivery_geozone . '_TABLE_' . $j)));