ich habe einige Fehler in der Anleitung von dem "Eventlists for Calendar lite"-Mod von OXPUS entdeckt.
Das wären wie folgt:
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
calendar.php
#
#-----[ FIND ]------------------------------------------
#
function display()
{
global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders,
$id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser,
$endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version;
$currentmonth = create_date("m", time(), $userdata['user_timezone']);
#
#-----[ REPLACE WITH ]------------------------------------------
#
function display()
{
global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders, $hole_year,
$id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser, $display_old, $per_page,
$endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version, $start, $total_events;
if (!$start) { $start = 0; }
$currentmonth = create_date("m", time(), $userdata['user_timezone']);
$current_day_month = create_date("m d", time(), $userdata['user_timezone']);
Code: Alles auswählen
$cal_version
Code: Alles auswählen
$cal_config
ebenso die Finde-Anweisungen für
Code: Alles auswählen
'CAL_VERSION' => 'Ver: '.$cal_version,
Code: Alles auswählen
'CAL_VERSION' => 'Ver: '.$cal_config['version'],
Damit sollte auch die Versionsanzeige imn der "cal_day_events_lite.tpl" für die Anzeige eines einzelnen Tages ordentlich funktionieren.
Nachtrag 1:
Bei meiner Version CalLite 1.4.2 läuft das jetzt richtig.
Nachtrag 2:
Jetzt zeigt der CalLite auch die Geburtstage als zukünftige Events an.