-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Fix admin got auto logged out when displaying large number of product reviews #40227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 2.4-develop
Are you sure you want to change the base?
Changes from all commits
6e8aa57
5af53da
1840736
7d96d70
4ab76c2
ed08e62
73e7edc
39502f5
ab55653
1e122b1
922e107
441bf69
49b25bc
e1220b3
c9ef532
831cdcc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Various methods has been removed from here, this could be backward incompatible change. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ | |
| use Magento\Eav\Model\Entity\Attribute\AbstractAttribute; | ||
| use Magento\Framework\DB\Select; | ||
| use Magento\Framework\EntityManager\MetadataPool; | ||
| use Magento\Review\Helper\Action\Pager; | ||
|
|
||
| /** | ||
| * Review Product Collection | ||
|
|
@@ -405,6 +406,8 @@ public function getAllIds($limit = null, $offset = null) | |
| * Get result sorted ids | ||
| * | ||
| * @return array | ||
| * @deprecated This method is not being used to fetch ids anymore.We use it only to support backward compatibility | ||
| * @see Pager::getRelativeReviewId() | ||
| */ | ||
| public function getResultingIds() | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing this method could be backward incompatible change. |
||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this method could backward incompatible change, third-party extensions may override this method.