You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
syslog displays: main.CRITICAL: Exception: Deprecated Functionality: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /home/html/vendor/mageplaza/module-same-order-number/Helper/Data.php on line 45 in /home/html/vendor/magento/framework/App/ErrorHandler.php:62
Solution (*)
Modify /vendor/mageplaza/module-same-number/Helper/Data.php line 45
Preconditions (*)
Steps to reproduce (*)
Expected result (*)
Actual result (*)
main.CRITICAL: Exception: Deprecated Functionality: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /home/html/vendor/mageplaza/module-same-order-number/Helper/Data.php on line 45 in /home/html/vendor/magento/framework/App/ErrorHandler.php:62
Solution (*)
Modify /vendor/mageplaza/module-same-number/Helper/Data.php line 45
old:
$this->applyForOption = explode(',', $this->getConfigGeneral('apply', $storeId));
new:
$this->applyForOption = explode(',', (string)$this->getConfigGeneral('apply', $storeId));
The text was updated successfully, but these errors were encountered: