Dear Toni,
I have fixed it!
The mod_eventlistcal15q does NOT work with the 1.1beta2.0-7 version of eventlist. You'll then get this error, because the database is different:
Warning: Invalid argument supplied for foreach() in ...\modules\mod_eventlistcal15q\helper.php on line 131
To fix this open modules\mod_eventlistcal15q\helper.php and change the $query to:
| Code: |
$query = 'SELECT a.*, l.venue, DAYOFMONTH(a.dates) AS created_day, YEAR(a.dates) AS created_year, MONTH(a.dates) AS created_month,c.id AS mcatid,c.catname,l.id AS mlocid,l.venue,'
.' CASE WHEN CHAR_LENGTH(a.alias) THEN CONCAT_WS(\':\', a.id, a.alias) ELSE a.id END as slug'
. ' FROM #__eventlist_events AS a'
.' INNER JOIN #__eventlist_cats_event_relations AS rel ON rel.itemid = a.id'
.' INNER JOIN #__eventlist_categories AS c ON c.id = rel.catid'
. ' LEFT JOIN #__eventlist_venues AS l ON l.id = a.locid'
. $wherestr
. ' AND c.access <= '.(int)$user->aid
.($catid ? $categories : '')
.($venid ? $venues : '')
;
|
It is not backwards compatible.