Warning: Undefined array key "title" in /xx/xxxxx/xxs/xxx/public_html/templates/default/includes/pages/checkout_payment.php on line 83
Phoenix CE PhoenixCart 1.0.8.20 - no changes
PHP 8.0
My fix - line 120 in includes/modues/payment/mollie_ideal.php I added
"title" => PULL_DOWN_DEFAULT,
So line 120 it becomes:
Code: Select all
return array_merge($selection, array("fields" => array(
array( "title" => PULL_DOWN_DEFAULT,
"field" => $this->draw_pull_down_menu("ideal_id", $methods, "", 'onchange="jQuery(\'input[name=payment][value=' . $this->get_code() . ']\').click()"')
)),
));