1<?php
2	/**************************************************************************\
3	* phpGroupWare - Todo                                                      *
4	* http://www.phpgroupware.org                                              *
5	* Written by Joseph Engo <jengo@phpgroupware.org>                          *
6	* -----------------------------------------------                          *
7	*  This program is free software; you can redistribute it and/or modify it *
8	*  under the terms of the GNU General Public License as published by the   *
9	*  Free Software Foundation; either version 2 of the License, or (at your  *
10	*  option) any later version.                                              *
11	\**************************************************************************/
12	/* $Id: index.php 21063 2010-03-25 22:46:41Z Caeies $ */
13
14	$GLOBALS['phpgw_info']['flags'] = array
15	(
16		'currentapp' => 'todo',
17		'noheader'   => True,
18		'nonavbar'   => True
19	);
20	include('../header.inc.php');
21
22	$obj = CreateObject('todo.ui');
23	$obj->show_list();
24	$GLOBALS['phpgw']->common->phpgw_footer();
25?>
26