/** * check if new posts are available * @param $ts timestamp of last post */ function isNewPost($ts) { $db = new DbForum(); return '<ret>' . (int) $db->getNewPostTs($ts) . '</ret>'; }