Hi,
Download option in AST_agent_status_detail.php exports file with incorret number of collumns. It happens when counter for status for user is 0. The html version is corret due to condition in line 372
if ($status_found < 1) {
$SstatusesHTML .= " 0 |";
}
The same condition should be made for variable $SstatusesFILE.
if ($status_found < 1)
{
$SstatusesHTML .= " 0 |";
$SstatusesFILE .= "0,";
}
MT