DawPi Posted August 13, 2023 Share 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() ) Link to comment Share on other sites More sharing options...
Marc Posted August 14, 2023 Share 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. Link to comment Share on other sites More sharing options...
Solution Marc Posted September 6, 2023 Solution Share 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. Link to comment Share on other sites More sharing options...
Recommended Posts