From 83a544901bd6377eb797e6cb6859215adac876a2 Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Mon, 22 Dec 2003 12:17:42 +0000 Subject: [PATCH] don't make a redirect anymore, just call the class/functions directly --- calendar/index.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/calendar/index.php b/calendar/index.php index bcdb3d57e1..cf0d80a597 100755 --- a/calendar/index.php +++ b/calendar/index.php @@ -32,12 +32,14 @@ } $parms = Array( - 'menuaction'=> 'calendar.uicalendar.index', +# 'menuaction'=> 'calendar.uicalendar.index', 'date' => date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime) ); //echo 'Local DateTime: '.date('Ymd H:i:s',$GLOBALS['phpgw']->datetime->users_localtime).'
'."\n"; - $GLOBALS['phpgw']->redirect_link('/index.php',$parms); - $GLOBALS['phpgw']->common->phpgw_exit(); +# $GLOBALS['phpgw']->redirect_link('/index.php',$parms); +# $GLOBALS['phpgw']->common->phpgw_exit(); + + ExecMethod('calendar.uicalendar.index',$parms); ?>