Skip to content

Commit d320837

Browse files
committed
Merge pull request #4804 in SW/shopware from sw-18153/5.2/revert-emotion-ajax-ddos-fix to 5.2
* commit '348dfab7a42fed4a7caf916f6c97e96b1972e24a': Revert "Merge pull request #4802 in SW/shopware from sw-18153/5.2/emotion-ajax-ddos-fix to 5.2"
2 parents ed178d0 + 348dfab commit d320837

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

UPGRADE-5.2.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
This changelog references changes done in Shopware 5.2 patch versions.
44

5-
## 5.2.23
6-
* Added conditional statement in `themes/Frontend/Responsive/frontend/_public/src/js/jquery.product-slider.js` to prevent the plugin from executing an ajax request indefinitely when no product data is received
7-
85
## 5.2.22
96
* Fixed the picture implementation of the `box-emotion.tpl` to load the correct image sizes
107
* Added new event `plugin/swAutoSubmit/onChangeSelection` in `themes/Frontend/Responsive/frontend/_public/src/js/jquery.auto-submit.js`

themes/Frontend/Responsive/frontend/_public/src/js/jquery.product-slider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@
649649

650650
$.publish('plugin/swProductSlider/onLoadItemsSuccess', [ me, response ]);
651651

652-
if (typeof callback === 'function' && me.itemsCount > 0) {
652+
if (typeof callback === 'function') {
653653
callback.call(me, response);
654654
}
655655
}

0 commit comments

Comments
 (0)