Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

customers.php error on line 885


adidaxx

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...