mirror of
https://github.com/SWG-Source/auth-site.git
synced 2026-07-13 22:01:16 -04:00
36 lines
804 B
PHP
36 lines
804 B
PHP
<?php
|
|
/**
|
|
* MyBB 1.8
|
|
* Copyright 2014 MyBB Group, All Rights Reserved
|
|
*
|
|
* Website: http://www.mybb.com
|
|
* License: http://www.mybb.com/about/license
|
|
*
|
|
*/
|
|
|
|
function task_threadviews($task)
|
|
{
|
|
global $mybb, $db, $lang, $plugins;
|
|
|
|
if($mybb->settings['delayedthreadviews'] != 1)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Update thread views
|
|
$query = $db->simple_select("threadviews", "tid, COUNT(tid) AS views", "", array('group_by' => 'tid'));
|
|
while($threadview = $db->fetch_array($query))
|
|
{
|
|
$db->update_query("threads", array('views' => "views+{$threadview['views']}"), "tid='{$threadview['tid']}'", 1, true);
|
|
}
|
|
|
|
$db->write_query("TRUNCATE TABLE ".TABLE_PREFIX."threadviews");
|
|
|
|
if(is_object($plugins))
|
|
{
|
|
$plugins->run_hooks('task_threadviews', $task);
|
|
}
|
|
|
|
add_task_log($task, $lang->task_threadviews_ran);
|
|
}
|