Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
DawPi Posted August 13, 2023 Posted August 13, 2023 File: applications\core\extensions\core\Queue\MoveMembers.php Is: /** * Return the query * * @param string $select What to select * @param array $data Queue data * @param int $offset Offset to use (FALSE to not apply limit) * @return \IPS\Db\Select */ protected function getQuery( $select, $data, $applyLimit=FALSE ) { return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $offset !== FALSE ) ? array( $offset, \IPS\REBUILD_SLOW ) : array() ) Should be: /** * Return the query * * @param string $select What to select * @param array $data Queue data * @param int $offset Offset to use (FALSE to not apply limit) * @return \IPS\Db\Select */ protected function getQuery( $select, $data, $applyLimit=FALSE ) { return \IPS\Db::i()->select( $select, 'core_members', $data['where'], 'core_members.member_id ASC', ( $applyLimit !== FALSE ) ? array( $applyLimit, \IPS\REBUILD_SLOW ) : array() )
Marc Posted August 14, 2023 Posted August 14, 2023 Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
Solution Marc Posted September 6, 2023 Solution Posted September 6, 2023 This issue was resolved in the recently released 4.7.13 release. Please update in order to fix this issue, and if you see any problem after that point, please let us know.
Recommended Posts