hello i have this problem in the article manager
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in E:\_Webzone\EasyPHP 2.0b1\www\comalors\admin\article_reviews.php on line 149
Warning: reset() [function.reset]: Passed variable is not an array or object in E:\_Webzone\EasyPHP 2.0b1\www\comalors\admin\includes\classes\object_info.php on line 17
Warning: Variable passed to each() is not an array or object in E:\_Webzone\EasyPHP 2.0b1\www\comalors\admin\includes\classes\object_info.php on line 18
somebody can help me i think is a probleme with mysql5 and array_merge in article_reviews.php or the function object_info.php in the admin edit comments
article_reviews.php
$rInfo_array = array_merge($reviews, $articles, $articles_name);
$rInfo = new objectInfo($rInfo_array);
object_info.php
<?php
class objectInfo {
// class constructor
function objectInfo($object_array) {
reset($object_array);
while (list($key, $value) = each($object_array)) {
$this->$key = tep_db_prepare_input($value);
}
}
}
?>
please some help thanks