Joomla.it Forum
Joomla! 1.5.x (versione con supporto terminato) => Joomla! 1.5 => : FMarinoni 16 Dec 2008, 18:33:45
-
Ho scaricato questo modulo da questo sito.
L'ho provato, ma da un problema... appare questo errore:
"Warning: Invalid argument supplied for foreach() in /var/www/virtual/ti-musica.net/htdocs/modules/mod_featured_events/helper.php on line 22"
nella linea 22 del file helper.php c'e' scritto "foreach($events as $event)"
qcuno puo' aiutarmi pf? grazieeeee
-
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