Stimmt, geht bei mir auch nicht. Kann Ältere Termine Links anklicken, der Hauptframe wird nicht updated.
CodeStellen was ändern. Bin dabei fast verzweifelt da die Struktur sehr verschachtelt ist. (javascript-code, sql, php, z.T. von fremdcomponenten übernommen... und der tinymce ist auch noch mal extra... einfach nur reinlinken zum anderen "richtigen" Backend- Tinymce war auch nicht möglich...) ...
Bei mir sieht das switch statement in eventlist_full_year.inc.php jetzt so aus, su.unten,
Ich weiss nicht mehr ob das gereicht hat...
Code: Alles auswählen
switch ($view)
{
case "d1" :
{
$d1s = "selected";
$now_start = intval(gmmktime(0,0,0,$cal_month,$cal_day,$cal_year,$is_dst));
$now_stop = intval(gmmktime(23,59,59,$cal_month,$cal_day,$cal_year,$is_dst));
$now_stamp = intval(gmmktime($now_hour,$now_min, $now_sec, $cal_month, $cal_day, $cal_year,$is_dst));
break;
}
/* case "d7" :
{
$d7s = "selected";
break;
}
case "d14" :
{
$d14s = "selected";
break;
}*/
case "d30" :
{
$d30s = "selected";
$last_day_in_month = gmdate( "d", gmmktime(0,0,0,$cal_next_month, 0, $cal_next_year ) );
$now_start = intval(gmmktime(0,0,0,$cal_month,01,$cal_year ));
//$now_stop = intval(gmmktime(23,59,59,$cal_month,$last_day_in_month,$cal_year ));
$now_stop = intval(gmmktime(23,59,59,$cal_month,$last_day_in_month,2030 ));
//fix vorschlag siehe http://contenido.org/forum/viewtopic.php?t=8289&start=45
$now_stamp = intval(gmmktime(0,0,0,$cal_month,$cal_day,$cal_year ));
break;
}
/* case "m3" :
{
$m3s = "selected";
break;
}
case "m6" :
{
$m6s = "selected";
break;
}*/
case "m12" :
{
$m12s = "selected";
$now_start = intval(gmmktime(0,0,0,01,01,$cal_year,$is_dst));
//$now_stop = intval(gmmktime(23,59,59,12,31,$cal_year,$is_dst));
//fix vorschlag siehe http://contenido.org/forum/viewtopic.php?t=8289&start=45
$now_stop = intval(gmmktime(23,59,59,12,31,2030,$is_dst));
$now_stamp = intval(gmmktime(0,0,0,$cal_month,$cal_day,$cal_year,$is_dst));
break;
}
// knb 20061009
case "m60" :
{
$m60s = "selected";
$now_start = intval(gmmktime(0,0,0,01,01,$cal_year - 5 ,$is_dst));
//$now_stop = intval(gmmktime(23,59,59,12,31,$cal_year,$is_dst));
//fix vorschlag siehe http://contenido.org/forum/viewtopic.php?t=8289&start=45
//$now_stop = intval(gmmktime(23,59,59,12,31,2030,$is_dst));
$now_stop = intval(gmmktime(23,59,59,$cal_month,$cal_day,$cal_year,$is_dst));
$now_stamp = intval(gmmktime(0,0,0,$cal_month,$cal_day,$cal_year,$is_dst));
break;
}
// knb 20061010
case "m120" :
{
$m120s = "selected";
$now_start = intval(gmmktime(0,0,0,01,01,$cal_year -10 ,$is_dst));
//$now_stop = intval(gmmktime(23,59,59,12,31,$cal_year,$is_dst));
//fix vorschlag siehe http://contenido.org/forum/viewtopic.php?t=8289&start=45
$now_stop = intval(gmmktime(23,59,59,12,31,2030,$is_dst));
$now_stamp = intval(gmmktime(0,0,0,$cal_month,$cal_day,$cal_year,$is_dst));
break;
}
}