For anyone else wanting to use PHP version 7.2 and above, replace
line 160
while (list($products_id, ) = each($contents)) {
with
foreach(array_keys($contents) as $products_id) {
For anyone else wanting to use PHP version 7.2 and above, replace
line 160
while (list($products_id, ) = each($contents)) {
with
foreach(array_keys($contents) as $products_id) {
Bookmarks