Summary:
PHP Warning: count(): Parameter must be an array or an object that implements Countable
Detailed Description:
PHP Warning: count(): Parameter must be an array or an object that implements
Countable in /modules/JMDownMan/function.assingfiles.php on line 103
the array "$entryarray" used in line 103
$smarty->assign('itemcount', count($entryarray));
should be inizialized first (e.g. at the very top) like:
$entryarray = array();