WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
Still have the same problem with the paypal processor error on line 65
and a new one: when I get to Paypal now it only shows the total amount payable - with no listings of the products ordered - I'll never work out that way what my customers want to buy. Any way to correct that?
// Make array with data sent to payment gateway
$query_order = $database->query("SELECT o.quantity, i.title FROM ".TABLE_PREFIX."mod_bakery_order AS o, ".TABLE_PREFIX."mod_bakery_items AS i WHERE order_id = '{$_SESSION['bakery']['order_id']}' AND o.item_id = i.item_id");$allItems = "";while ($orderPart = $query_order->fetchRow()) { if ($allItems !== "") $allItems .= "; "; $allItems .= $orderPart["quantity"].'x '.$orderPart["title"];}
'item_name' => $MOD_BAKERY[$payment_method]['TXT_AGGREGATED_ITEMS'],
'item_name' => $allItems,