AndrewD, can you add a little thing for local_links_admin.php?set=statistics (version 2.2.6)?
When there is nothing to be downloaded in the last 24 hours, for the "
Access during last 24 hours" line, you have this:
The query is ok, but the bytes field from the query is empty (only when you have nothing to be downloaded since 24 hours).
After this:
PHP Code:
$linkstats['downloads'] = $count['downloads'];
Can you add this?
PHP Code:
if (empty($count['bytes']))
{
$count['bytes'] = 0;
}
The result of this code change will display this:
Thanks
PS: The french file for 2.2.6 is ready