JnJSpdShop Posted February 5, 2009 Share Posted February 5, 2009 Reviews Products Rating Date Added Action Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /home/jandjspd/public_html/store/9051/reviews.php on line 215 Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/jandjspd/public_html/store/9051/reviews.php on line 216 Warning: reset() [function.reset]: Passed variable is not an array or object in /home/jandjspd/public_html/store/9051/includes/classes/object_info.php on line 17 Warning: Variable passed to each() is not an array or object in /home/jandjspd/public_html/store/9051/includes/classes/object_info.php on line 18 Any ideas? Thanks Link to comment Share on other sites More sharing options...
JnJSpdShop Posted February 8, 2009 Author Share Posted February 8, 2009 Any ideas anyone? Link to comment Share on other sites More sharing options...
dodog Posted February 9, 2009 Share Posted February 9, 2009 Solution: in catalog/admin/reviews.php around line 133 find: $rInfo_array = array_merge($reviews, $products, $products_name); change to: $rInfo_array = array_merge((array)$reviews, (array)$products, (array)$products_name); and around line 215 find: $review_info = array_merge($reviews_text, $reviews_average, $products_name); $rInfo_array = array_merge($reviews, $review_info, $products_image); change to: $review_info = array_merge((array)$reviews_text, (array)$reviews_average, (array)$products_name); $rInfo_array = array_merge((array)$reviews, (array)$review_info, (array)$products_image); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.