########################################################
# 	Mantis Bugtracker Add-On
# 	Time Tracking
# 
#	2010  by Cas Nuy www.NUY.info
########################################################



In case you use my modicication for Teams, this module will take that into account.
You want to know more about the Teams modification, send an email to admin_at_nuy_dot_info.

********************************************************************************************
* Installation                                                                             *
********************************************************************************************
Like any other plugin. 
After copying to your webserver :
- Start mantis ad administrator
- Select manage
- Select manage Plugins
- Select Install behind TimeTrack 0.95
- Once installed, click on the plugin-name for further configuration.

For version 1.2.1 make sure to have this statement in confg_inc.php:
$g_path          = 'http://path to your mantis installation/';

In case the table is not correctly created, use the following SQL command:
CREATE TABLE `mantis_module_timetracking` (
  `id` int(11) NOT NULL auto_increment,
  `bugid` int(11) default NULL,
  `user` int(11) default NULL,
  `expenditure_date` date default NULL,
  `hours` double(15,3) default NULL,
  `costs` double(15,3) default NULL,
  `time_unit` enum('md','hr') default 'hr',
  `timestamp` bigint(20) unsigned zerofill NOT NULL default '00000000000000000000',
  `info` varchar(255) default NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM DEFAULT CHARSET=utf8;

********************************************************************************************
License                                                                                    *
********************************************************************************************
This plugin is distributed under the same conditions as Mantis itself.

********************************************************************************************
Thanks                                                                                    *
********************************************************************************************
Original by Elmar Schumacher  2005
(elmar.schumacher@web.de)  GAMBIT Consulting GmbH

********************************************************************************************
Greetings                                                                                  *
********************************************************************************************
Cas Nuy 
cas@nuy.info
http://www.nuy.info