summaryrefslogtreecommitdiffstats
path: root/lib/batch.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-19 18:05:40 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-19 18:05:40 +0000
commit0c0262b8a7326d1e2effbce5d422fd672300d114 (patch)
treee84c501cccbb2e7d3d9655685020fd7a266a7170 /lib/batch.php
parent49f48af532c2d3196d94b444c3514bdb1a499436 (diff)
downloadampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.gz
ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.tar.bz2
ampache-0c0262b8a7326d1e2effbce5d422fd672300d114.zip
mother of all commits...
Diffstat (limited to 'lib/batch.php')
-rw-r--r--lib/batch.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/batch.php b/lib/batch.php
index a3a3aba3..508564c1 100644
--- a/lib/batch.php
+++ b/lib/batch.php
@@ -32,7 +32,7 @@ function get_song_files( $song_ids ) {
/* Don't archive disabled songs */
if ($song->status != 'disabled') {
$user->update_stats( $song_id );
- $total_size += sprintf("%.2f",($song->size/1048576));;
+ $total_size += sprintf("%.2f",($song->size/1048576));
array_push( $song_files, $song->file );
} // if song isn't disabled
}