搜尋:
// can this user stick this thread?
if (can_moderate($threadinfo['forumid'], 'canmanagethreads'))
{
$threadinfo['sticky'] = 0;
$show['stickunstick'] = true;
$show['unstickthread'] = false;
}
else
{
$show['stickunstick'] = false;
}
在後面添加:
// can this user globalstick this thread?
if (can_moderate($threadinfo['forumid'], 'canglobalstick'))
{
$threadinfo['globalsticky'] = 0;
$show['globalstickunstick'] = true;
$show['globalunstickthread'] = false;
}
else
{
$show['globalstickunstick'] = false;
}
搜尋:
if ($show['openclose'] OR $show['stickunstick'])
替換為:
if ($show['openclose'] OR $show['stickunstick'] OR $show['globalstickunstick'])
|