Hi,
by switching on the debug in Joomla, I got this error:
Warning: count(): Parameter must be an array or an object that implements Countable in /www/htdocs/w0177c07/www/realswap.net/components/com_comprofiler/plugin/user/plug_cbmenu/cb.menu.php on line 1575
changing from
Code:
for ( $i = 0, $pmc = count( $pm ); $i < $pmc; $i++ ) {
to
Code:
for ( $i = 0, $pmc = count((array) $pm ); $i < $pmc; $i++ ) {
solved it.
Best regards
Eric