you will get this error if the table prefix of you're database is not jos_
in line 14 this is hardcoded
$query = "SELECT id, title FROM jos_eventlist_events where id IN(".$featured_events.") and published = 1";
replace by this
$query = "SELECT id, title FROM #__eventlist_events where id IN(".$featured_events.") and published = 1";
and the module will work for every prefix
sorry for english