From: Joe Hunt Date: Wed, 18 Jan 2017 14:32:57 +0000 (+0100) Subject: Fixed an array_combine object issue. X-Git-Tag: 2.3-final~12 X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=cb27e249917456ac29e41f12a75d359c4fdad977 Fixed an array_combine object issue. --- diff --git a/includes/ui/ui_lists.inc b/includes/ui/ui_lists.inc index 2cc16888..cd3be97c 100644 --- a/includes/ui/ui_lists.inc +++ b/includes/ui/ui_lists.inc @@ -2367,7 +2367,7 @@ function payment_services($name) { global $payment_services; - $services = array_combine(array_keys($payment_services), array_keys($payment_services)); + $services = (object)array_combine(array_keys($payment_services), array_keys($payment_services)); return array_selector($name, null, $services, array( 'spec_option'=> _("No payment Link"),