Hugo Pinto - 2008-04-02 17:52:08 -
In reply to message 1 from pepe
This seems to be a php bug.
On line 568 of gantt.class.php,
REPLACE:
$start += 86400;
WITH:
$start = mktime(date("H",$start),date("i",$start),date("s",$start),date("m",$start),date("d",$start)+1,date("Y",$start));
and That's it.
Hugo