Hallo,
ich benutze xtc v2 rc1.2 únd seit mysql5 update sind problemme augetaucht, die meisten konnte ich dank der forumsuche lösen.
Beim Bestellvorgang beim aufruf der checkout_confirmation.php ist ein Problermm geblieben:
Fatal error: Call to a member function get_products() on a non-object in
/is/htdocs/www/includes/modules/order_total/ot_payment.php on line
86
PHP-Code:
function get_order_total() {
global $order, $cart;
$order_total = $order->info['total'];
// Check if gift voucher is in cart and adjust total
$products = $cart->get_products();
for ($i=0; $i<sizeof($products); $i++) {
$t_prid = xtc_get_prid($products[$i]['id']);
$gv_query = xtc_db_query("select products_price, products_tax_class_id, products_model from " . TABLE_PRODUCTS . " where products_id = '" . $t_prid . "'");
$gv_result = xtc_db_fetch_array($gv_query);
Was muss man ändern damit es wieder lauft?