Beschrijving van de betaling
-
In de
Sisow_Gateway_Abstract
class staat eeb foutje (r.253):
$sisow->description = (isset($this->get_option['description_bankaccount']) && $this->get_option['description_bankaccount'] != '') ? rtrim($this->get_option['description_bankaccount']) . ' ' . $order->get_order_number() : get_bloginfo('name') . ' ' . $order->get_order_number();
De get_option method wordt als array aangeroepen.
het zou eerder zoiets moeten zijn:$sisow->description = (!empty($this->get_option('description_bankaccount'))) ? rtrim($this->get_option('description_bankaccount')) . ' ' . $order->get_order_number() : get_bloginfo('name') . ' ' . $order->get_order_number();
- The topic ‘Beschrijving van de betaling’ is closed to new replies.