We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf7821 commit 17a6a25Copy full SHA for 17a6a25
app/code/community/Doofinder/Feed/Model/Generator.php
@@ -335,6 +335,7 @@ protected function _addProductToXml(
335
}
336
337
$this->_oXmlWriter->endElement();
338
+ $this->_flushFeed(true);
339
340
$iDumped++;
341
@@ -548,9 +549,14 @@ protected function _initFeed()
548
549
550
551
- protected function _flushFeed()
552
+ protected function _flushFeed($break = false)
553
{
554
$this->_response .= $this->_oXmlWriter->flush(true);
555
+
556
+ if ($break)
557
+ {
558
+ $this->_response .= PHP_EOL;
559
+ }
560
561
562
protected function _closeFeed()
0 commit comments