Collabtive date() expects parameter 2 to be long error

file:

/include/class.task.php


line problem:
$endstring = date(CL_DATEFORMAT, $task["end"]);


Replace with this:
if($task["end"] == "" || $task["end"] == null)
    $end= $task["start"];
else
    $fin = $task["end"];

$endstring = date(CL_DATEFORMAT, $end);