There is a problem in output.class.php:
Deprecated: Required parameter $params follows optional parameter $view in /srv/www/vhosts/mysite.ch/httpdocs/components/com_jem/classes/output.class.php on line 848
but when I change from:
static public function mapicon($data, $view = false, $params)
to:
static public function mapicon($data, $params, $view = false)
I get an error calling the eventdetailview
call to a member function get()
EDIT:
When I change to:
static public function mapicon($params, $data, $view = false)
it seems to work but gives an error:
Warning: Attempt to read property "map" on string in /srv/www/vhosts/mysite.ch/subdomains/intra/httpdocs/components/com_jem/classes/output.class.php on line 854