Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted August 13, 20231 yr 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() )
August 14, 20231 yr 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.
September 6, 20231 yr Solution 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.