Oscommerce 2.3 Admin customers merge errors
Warning: Array_merge() [function.array-merge]: Argument #1 Is Not An Array In public_html/admin/customers.php On Line 733
Edit file admin/customers.php
Find these lines:
$customer_info = array_merge($country, $info, $reviews);
$cInfo_array = array_merge($customers, $customer_info);
and change them to:
$customer_info = array_merge((array)$country, (array)$info, (array)$reviews);
$cInfo_array = array_merge((array)$customers
Cheers