diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-06 18:21:15 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-06 18:21:15 +0000 |
commit | caaf0f6e12a52bed50bde91644dff565b90e4325 (patch) | |
tree | 1a3629ce0d73b108e6649f560331f50c12342655 /lib/batch.lib.php | |
parent | f175c68f5de5631846084ef6159896d596ebc299 (diff) | |
download | ampache-caaf0f6e12a52bed50bde91644dff565b90e4325.tar.gz ampache-caaf0f6e12a52bed50bde91644dff565b90e4325.tar.bz2 ampache-caaf0f6e12a52bed50bde91644dff565b90e4325.zip |
dont track stats on a batch download.. thats just insane
Diffstat (limited to 'lib/batch.lib.php')
-rw-r--r-- | lib/batch.lib.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/batch.lib.php b/lib/batch.lib.php index 867956a9..6666cbb1 100644 --- a/lib/batch.lib.php +++ b/lib/batch.lib.php @@ -34,7 +34,6 @@ function get_song_files( $song_ids ) { $song = new Song( $song_id ); /* Don't archive disabled songs */ if ($song->status != 'disabled') { - $user->update_stats( $song_id ); $total_size += sprintf("%.2f",($song->size/1048576)); array_push( $song_files, $song->file ); } // if song isn't disabled |