
I am using TinyEvents to show some events in the block.
Now I only want to show events within the next week (7 days)
Who can help me with a hack?
Thank You very much !!!
Tus
Warning [PHP]: sprintf(): Too few arguments in file
C:WEBSITESwww.domain.atmodulesxcgalincludefunctions.inc.php line 84
function create_tabs($items, $curr_page, $total_pages, $template)
{
global $xoopsModuleConfig;
if (function_exists('theme_create_tabs')) {
theme_create_tabs($items, $curr_page, $total_pages, $template);
return;
}
$maxTab = $xoopsModuleConfig['max_tabs'];
[b][color=CC0000]$tabs = sprintf($template['left_text'], $items, $total_pages);[/color][/b]
if (($total_pages == 1)) return $tabs;
$tabs .= $template['tab_header'];
if ($curr_page == 1) {
$tabs .= sprintf($template['active_tab'], 1);
....