diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a7307ef7088dc090e4813a797ce2570f37f6fe64..fec00b3d12675b4244c311d1683f5cc415a205ad 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,6 +3,7 @@ Feeds 6.x 1.0 xxxxxxxxxxxxxxxxxxxx ---------------------------------- +- #760140 lyricnz: FeedsBatch->total not updated when addItem($item) is called. - #755544 Monkey Master: Keep batch processing when mapping fails. - alex_b: Reset import schedule after deleting items from feed. - #653412 rbrandon: Do not create items older than expiry time. diff --git a/includes/FeedsBatch.inc b/includes/FeedsBatch.inc index 4860f89f0cab30cc2c1a696aa861f3d4de35637d..adffa5c8499bf5308d07f7e8dd82544431c19281 100644 --- a/includes/FeedsBatch.inc +++ b/includes/FeedsBatch.inc @@ -133,7 +133,9 @@ class FeedsImportBatch extends FeedsBatch { * removed from the internal array. */ public function shiftItem() { - return array_shift($this->items); + $item = array_shift($this->items); + $this->total = count($this->items); + return $item; } /** @@ -165,7 +167,7 @@ class FeedsImportBatch extends FeedsBatch { */ public function setItems($items) { $this->items = $items; - $this->total = count($items); + $this->total = count($this->items); } /** @@ -173,5 +175,6 @@ class FeedsImportBatch extends FeedsBatch { */ public function addItem($item) { $this->items[] = $item; + $this->total = count($this->items); } }