1
0
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:
Tim Düsterhus 2011-12-10 17:20:57 +01:00
parent 7e0dd0517d
commit 0eb439e75f

View File

@ -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);
}
}