How can I remove hour msg on main page

I have store daily data successfuly into db,when go to main page. I don’t want to display hour msg.
because I don’t care the time. (you can see the attachement)

In my process,I access data from db,then change it into XML format,like :

<start_date>2012-07-11 11:55:11</start_date>


Then use json-lib change from XML to JSON.

PS: I know I should modify dhtmlscheduler.js.But I don’t know where.
Anyone tell me what should I do? Thank you.

after look this doc: docs.dhtmlx.com/doku.php?id=dhtm … ngs_config
on my init() method,I add this code:
scheduler.config.hour_date = “”;
It works!