Ich habe das selbe problem und hoff auch das dort eine lösung gefunden wird, da es irgend ein conflict ist, wenn man sich mal die cal_main.php anschaut:
Code: Alles auswählen
// Permanent register_globals work around and more secure variable parser
if(DEBUG) {
$conflict_params = array(
'day',
'month',
'year',
'hour',
'minute',
'am_pm',
'day_end',
'month_end',
'year_end',
'hour_end',
'minute_end',
'am_pm_end',
'stop_day',
'stop_month',
'stop_year',
'category'
);
$conflicts = '';
foreach($conflict_params AS $param) {
if (isset($HTTP_POST_VARS[$param])) {
$conflicts .= 'POST["'.$param.'"]'. $HTTP_POST_VARS[$param] ."<BR>\n";
} if (isset($HTTP_GET_VARS[$param])) {
$conflicts .= 'GET["'.$param.'"]'. $HTTP_GET_VARS[$param] ."<BR>\n";
}
}
if(!empty($conflicts)) {
message_die(GENERAL_ERROR, "<b>Internal variables being used by another MOD. <BR>This will cause clash and unexpected behaviour/outcome(s)</b> <BR>Please post error report to support forum <i>(with full setup data)</i>", "", __LINE__, __FILE__, $conflicts);
}
}
Das ist die besagte Zeilen in cal_main.php aus der Fehlermeldung die im Beitrag #1 steht.
Komischerweisse bekomme ich diese meldung nicht nur, wenn ich im Monatsansicht ein neue Termin hinzufügen möchte, sonder auch wenn ich das nächste bzw. voriges Jahr anzeigen lassen möchte (auf klick des Icons). Monatswechsel mit die Icons dagegen funktioniere wunderbar.
P.S. weiss eigentlich was gemacht hast hier? weils hier geht bzw. ich hier den fehler net feststellen kann.