Topic: cn_get_categories(); different browsers different output
Hello supportTeam,
with this code i try to list all categories:
include ('cutenews/core/init.php');
$categoryes= cn_get_categories();
print_r($categoryes);
chrome 41.0 output:
Array ( [1] => Array ( [name] => preise [memo] => Preise [icon] => [acl] => [parent] => 0 [level] => 0 [ac] => Array ( [0] => 13 [1] => 14 ) )..........
count($categoryes) output:12
with Safari / Firefox the output:
array()
count($categoryes) output:0
i do not unterstand why?