leclub666 433
| Posté : 22-01-2008 09:15
oui je le charge bien, c'est bon ça fonctionne maintenant.Ce code là tourne l'autre non. Mais je ne sais pas pourquoi. J'ai juste déplacé la condition pour le titre du bloc.bizarre non ?
function ephemblock() {
$Configure_ToggleDiv = new ToggleDiv(1);
$tmp_toggle=$Configure_ToggleDiv->Img();
$boxstuff=$Configure_ToggleDiv->Begin();
if ($block_title=="")
$title="<b>Ephéméride 2008</b>";
else
$title=$block_title;
global $gmt;
$eday=date("d",time()+($gmt*3600));
$emonth =date("m",time()+($gmt*3600));
$result = mysql_query("select yid, content from ephem where did='$eday' AND mid='$emonth' order by yid ASC");
//$boxstuff .= ".translate("One Day like Today...").";
while (list($yid, $content) = mysql_fetch_array($result)) {
if ($cnt==1)
$boxstuff .= "\n<br />\n";
$boxstuff .= "<li class=\"oLI\"><img src=\"images/pixel.gif\" hspace=\"2\"><b>$yid</b>\n<br />\n";
$boxstuff .= aff_langue($content);
$cnt = 1;
}
$boxstuff.=$Configure_ToggleDiv->End();
themesidebox($tmp_toggle.$boxTitle, $boxstuff);
}
|