recurring event question

I follow the step by step from your guideline about recurring calendar and i have a problem occur. What happen is when i’m setting up a task for every monday and tuesday for every week. Somehow the task appears for every day events. Is there any thing i can do to fix it?

Please provide exact steps to reconstruct the problem

here is the code i did

[code]<?php
require_once(’…/codebase/connector/scheduler_connector.php’);
require_once(‘db_config.php’);
$dbtype = “MySQL”;
$res=mysql_connect($hostname,$user,$password);
mysql_select_db($dbname);

$scheduler = new JSONSchedulerConnector($res, $dbtype);    

$user_list = new JSONOptionsConnector($res, $dbtype);
$user_list->render_table("users","id","id(value),name(label)");

$scheduler->render_table("events","event_id","start_date,end_date,text,rec_type,event_pid,event_length,user");

?>[/code]