This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/game/main/forums/library/updateLast.inc

21 lines
442 B
PHP

<?php
class main_forums_updateLast {
function main_forums_updateLast($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
function run($forum) {
$q = $this->db->query("SELECT id FROM f_post WHERE forum=$forum AND deleted IS NULL ORDER BY moment DESC LIMIT 1");
if (!($q && dbCount($q))) {
return;
}
list($id) = dbFetchArray($q);
$this->db->query("UPDATE f_forum SET last_post=$id WHERE id=$forum");
}
}
?>