What I did is change row 101 from
Code: Select all
return $row['lost_time'];Code: Select all
return is_array($row) ? $row['lost_time'] : null;AND this is forum post ID 13765!

Code: Select all
return $row['lost_time'];Code: Select all
return is_array($row) ? $row['lost_time'] : null;






















