By mioip on
warning: array_merge() [function.array-merge]: Argument #1 is not an array in /opt/lampp/htdocs/blogwit/includes/menu.inc on line 351.
This occurs when I'm in /admin/access/category/#whatever in regards to taxonomy_access module. It has been installed and configured according to the directions, and I'm not sure what to make of it.
Comments
Are you running your site
on PHP 5?
I've had similar issues on test sites with TAC on PHP 5. When I set up the identical site on PHP 4.3.x, the problem disappeared.
Despite the time lag between the original post and my reply, I hope this helps.
Cheers,
bonobo
-------
http://www.funnymonkey.com
Tools for Teachers
-------
http://www.funnymonkey.com
Easy fix
I am guessing you have a line something to this effect
$results = array_merge ($results, $result);
Above the results line add
$results = array();
this will take and execute it which is what changed in php5 but it helps run code much faster.