Page 1 of 1

AST agent status detail download patch

PostPosted: Mon Jan 18, 2010 11:55 am
by mati
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

PostPosted: Mon Jan 18, 2010 1:38 pm
by mflorell
Please create a ticket in the Issue Tracker and link to this topic.