To solve this problem you can a pretty simple code change.
Just change this piece of code:
from render\render_misc.inc.php
function renderEstimationGraph($estimated, $estimated_max, $completion)
{
...
$estimated_max= $estimated_max/60/60;
With this code:
from render\render_misc.inc.php
function renderEstimationGraph($estimated, $estimated_max, $completion)
{
...
$estimated_max = $estimated_max == 0
? $estimated
: $estimated_max/60/60;