diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 22:34:37 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 22:34:37 -0400 |
commit | 2e2c0919cb8fa7380327e4f156123bcb9f838c32 (patch) | |
tree | 107fc8d8ee9ccfc21271013e531c495b34d6664b /lib/class | |
parent | ac81e2b0e32658f454042c4a1b07e1f7b12922f9 (diff) | |
download | ampache-2e2c0919cb8fa7380327e4f156123bcb9f838c32.tar.gz ampache-2e2c0919cb8fa7380327e4f156123bcb9f838c32.tar.bz2 ampache-2e2c0919cb8fa7380327e4f156123bcb9f838c32.zip |
Increment the correct variable during verify
Final displayed count was always 0 because we were incrementing a
different variable than we were using.
Diffstat (limited to 'lib/class')
-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 be31d7e7..addf67d2 100644 --- a/lib/class/catalog.class.php +++ b/lib/class/catalog.class.php @@ -1685,7 +1685,7 @@ class Catalog extends database_object { if ($chunk > 0) { $media_type::clear_cache(); } - $total_updates += $this->_verify_chunk($media_type, $chunk, 10000); + $total_updated += $this->_verify_chunk($media_type, $chunk, 10000); } } |