adidaxx Posted February 19, 2009 Share Posted February 19, 2009 hi, i can't delete any customers from admin/customers, its give me this error: Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /home/theoto/public_html/catalog/admin/customers.php on line 885 Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/theoto/public_html/catalog/admin/customers.php on line 885 line 885 in cusomers.php its: 883 $reviews = tep_db_fetch_array($reviews_query); 884 885 $customer_info = array_merge($country, $info, $reviews); 886 $cInfo_array = array_merge($customers, $customer_info); where i have to change/modify? Link to comment Share on other sites More sharing options...
Guest Posted February 19, 2009 Share Posted February 19, 2009 hi,i can't delete any customers from admin/customers, its give me this error: Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /home/theoto/public_html/catalog/admin/customers.php on line 885 Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/theoto/public_html/catalog/admin/customers.php on line 885 line 885 in cusomers.php its: 883 $reviews = tep_db_fetch_array($reviews_query); 884 885 $customer_info = array_merge($country, $info, $reviews); 886 $cInfo_array = array_merge($customers, $customer_info); where i have to change/modify? Try $customer_info = array_merge((array)$country, (array)$info, (array)$reviews); Link to comment Share on other sites More sharing options...
adidaxx Posted February 19, 2009 Author Share Posted February 19, 2009 thx, works ...that line u give me resolve the error, but still don't delete a customer(from admin panel/ Customers), have button edit,delete,orders,email...only delete don't work..... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.