Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.0.2
-
Component/s: None
-
Labels:None
Description
In the __construct() method of checkout2.php we call:
Loader::loadComponents($this, ['Input', 'Json']);
This is erroneous because we removed the Json component in 5.0.0. Change it to:
Loader::loadComponents($this, ['Input']);
No further modifications required as the component is not actually used in the file.
Remember to update the version