I noticed an error when using a server with PHP 5, within the article review page in the admin.

You would get the function array_merge error on line 148

This is the PHP5 compatible file.

Either copy included file to catalog/admin/ and overwrite old file or manually change the file like below:

#######Manual instruction:

------------->>>>Open Catalog/Admin/article_reviews.php

Find the code around line 148,

$rInfo_array = array_merge($reviews, $articles, $articles_name);

------->>Change to:

$rInfo_array = array_merge((array)$reviews, (array)$articles, (array)$articles_name);




All done!


More...