diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2011-12-02 10:26:34 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-12-02 10:28:20 -0500 |
commit | 0c90811df455ed3f40cfc28dc5fd14c9bbe30cc3 (patch) | |
tree | 042881d458cf560974f22276e0a61b1ac6e44f9a /lib | |
parent | 312052f235b38a168e792163ac0a41691b37f479 (diff) | |
download | ampache-0c90811df455ed3f40cfc28dc5fd14c9bbe30cc3.tar.gz ampache-0c90811df455ed3f40cfc28dc5fd14c9bbe30cc3.tar.bz2 ampache-0c90811df455ed3f40cfc28dc5fd14c9bbe30cc3.zip |
Fix catalog clean
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/catalog.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php index d6543bb4..f7783454 100644 --- a/lib/class/catalog.class.php +++ b/lib/class/catalog.class.php @@ -1400,7 +1400,7 @@ class Catalog extends database_object { $chunks = floor($total / 10000); $dead = array(); foreach(range(0, $chunks) as $chunk) { - array_merge($dead, $this->_clean_chunk($media_type, $chunk, 10000)); + $dead = array_merge($dead, $this->_clean_chunk($media_type, $chunk, 10000)); } $dead_count = count($dead); |