lwb5-in-2025/scripts/game/beta5/forums/library/updateLast.inc

22 lines
426 B
PHP
Raw Normal View History

2016-01-10 11:01:49 +01:00
<?php
class beta5_forums_updateLast {
function beta5_forums_updateLast($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
function run($forum) {
$q = $this->db->query("SELECT id FROM af_post WHERE forum=$forum ORDER BY moment DESC LIMIT 1");
if (!($q && dbCount($q))) {
return;
}
list($id) = dbFetchArray($q);
$this->db->query("UPDATE af_forum SET last_post=$id WHERE id=$forum");
}
}
?>