i had the problem that when displaying pastlist the header says "upcoming events" resp. "bevorstehende termine".
i've tweaked the module to make it work, maybe this could be featured in the next update, cause everytime i update i have to do this work all over again and i don't know how to submit changes or even participate in the development.
here is the work-around:
1.) in modules/Calendar
make a copy of the "function.displayupcominglist.php" and name it "function.displaypastlist.php"
2.) edit this one and replace in line 3:
"function DisplayUpcomingList" by "function DisplayPastList"
3.) edit "action.default.php':
somewhere down in the switch-section it says:
Code: Select all
case 'pastlist':
{
require_once(dirname(__FILE__).'/function.displayupcominglist.php');
$params['pastitems'] = 1;
DisplayUpcomingList($this, $id, $params, $returnid);
}
break;
Code: Select all
case 'pastlist':
{
require_once(dirname(__FILE__).'/function.displaypastlist.php');
$params['pastitems'] = 1;
DisplayPastList($this, $id, $params, $returnid);
}
break;
hope this helped anyone
