In includes/modules/bootstrap/centerboxes/also_purchased_products.php

if $productsInCategory is not set, a PHP notice is issued. Easily fixed by adding


if (!isset($productsInCategory)) $productsInCategory = array();

around line 15.