diff options
author | pb1dft <pb1dft@ampache> | 2006-10-27 03:54:53 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-10-27 03:54:53 +0000 |
commit | d6e50fd701008d2b8cfa5ecb827ae0880c91b500 (patch) | |
tree | f12837dd5edae5be950ede7a0f8348c6cd38a671 /lib/class | |
parent | bafe4061a549b3c792ce4c327bc0acf98952cec4 (diff) | |
download | ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.tar.gz ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.tar.bz2 ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.zip |
Reworked RSS and fixed mail statistics
Diffstat (limited to 'lib/class')
-rw-r--r-- | lib/class/stats.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stats.class.php b/lib/class/stats.class.php index 745232b9..057d2534 100644 --- a/lib/class/stats.class.php +++ b/lib/class/stats.class.php @@ -114,7 +114,7 @@ class Stats { " WHERE object_type='$type' AND date >= '$date' AND user = '$user'" . " GROUP BY object_id ORDER BY `count` DESC LIMIT $count"; $db_results = mysql_query($sql, dbh()); - + $results = array(); while ($r = mysql_fetch_assoc($db_results)) { |