The ASE logshold report (ASE/syslogshold_statistics.php) returns an error when there are no data collected in table "_LogsHold".
A check "if ($result != FALSE )" (as done in other reports) seems to be missing :
$result = sybase_query($query,$pid);
$rw=0;
$cpt=0;
**if ($result != FALSE ) { **
while($row = sybase_fetch_array($result))
{
$rw++;
...........................
<?php echo $row["xloid"] ?>
</td>
</tr>
<?php
} // end while
**} // end if $result...**
?>
Anonymous
Ok thanks, fixed. Will be available in next release
JPM