mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2025-01-09 00:20:08 +00:00
Use fetchColumn to fetch the object-ids
This commit is contained in:
parent
7e0dd0517d
commit
0eb439e75f
@ -24,7 +24,7 @@ class ChatMessageEditor extends \wcf\data\DatabaseObjectEditor {
|
||||
* @return integer Number of deleted messages.
|
||||
*/
|
||||
public static function cleanup($lifetime = CHAT_ARCHIVETIME) {
|
||||
$sql = "SELECT
|
||||
$sql = "SELECT
|
||||
".static::getDatabaseIndexName()."
|
||||
FROM
|
||||
".static::getDatabaseTableName()."
|
||||
@ -33,9 +33,7 @@ public static function cleanup($lifetime = CHAT_ARCHIVETIME) {
|
||||
$statement = \wcf\system\WCF::getDB()->prepareStatement($sql);
|
||||
$statement->execute(TIME_NOW - $lifetime);
|
||||
$objectIDs = array();
|
||||
while ($row = $statement->fetchArray()) {
|
||||
$objectIDs[] = $row[static::getDatabaseIndexName()];
|
||||
}
|
||||
while ($objectIDs[] = $statement->fetchColumn());
|
||||
return static::deleteAll($objectIDs);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user