
10-29-2006, 01:10 PM
|
|
|
Join Date: Jul 2002
Location: Scotland
Posts: 3,486
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by PitchouneN64ngc
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 
|
Thanks - noted - will be fixed in the final upload of 2.2.6.
|