Zeile 56 | Zeile 56 |
---|
$flist_queue_attach = $wflist_reports = $tflist_reports = $flist_reports = $tflist_modlog = $flist_modlog = $errors = ''; // SQL for fetching items only related to forums this user moderates $moderated_forums = array();
|
$flist_queue_attach = $wflist_reports = $tflist_reports = $flist_reports = $tflist_modlog = $flist_modlog = $errors = ''; // SQL for fetching items only related to forums this user moderates $moderated_forums = array();
|
| $numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0;
|
if($mybb->usergroup['issupermod'] != 1) { $query = $db->simple_select("moderators", "*", "(id='{$mybb->user['uid']}' AND isgroup = '0') OR (id IN ({$mybb->usergroup['all_usergroups']}) AND isgroup = '1')");
|
if($mybb->usergroup['issupermod'] != 1) { $query = $db->simple_select("moderators", "*", "(id='{$mybb->user['uid']}' AND isgroup = '0') OR (id IN ({$mybb->usergroup['all_usergroups']}) AND isgroup = '1')");
|
$numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0;
| |
while($forum = $db->fetch_array($query)) {
|
while($forum = $db->fetch_array($query)) {
|
// For Announcements if($forum['canmanageannouncements'] == 1) { ++$numannouncements; }
| $moderated_forums[] = $forum['fid']; $children = get_child_list($forum['fid']); if(is_array($children)) { $moderated_forums = array_merge($moderated_forums, $children); } } $moderated_forums = array_unique($moderated_forums);
$numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0; foreach($moderated_forums as $moderated_forum) { // For Announcements if(is_moderator($moderated_forum, 'canmanageannouncements')) { ++$numannouncements; }
|
// For the Mod Queues
|
// For the Mod Queues
|
if($forum['canapproveunapprovethreads'] == 1)
| if(is_moderator($moderated_forum, 'canapproveunapprovethreads'))
|
{
|
{
|
$flist_queue_threads .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_threads .= ",'".implode("','", $children)."'"; }
| $flist_queue_threads .= ",'{$moderated_forum}'";
|
++$nummodqueuethreads; }
|
++$nummodqueuethreads; }
|
if($forum['canapproveunapproveposts'] == 1) { $flist_queue_posts .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_posts .= ",'".implode("','", $children)."'"; } ++$nummodqueueposts; }
if($forum['canapproveunapproveattachs'] == 1)
| if(is_moderator($moderated_forum, 'canapproveunapproveposts')) { $flist_queue_posts .= ",'{$moderated_forum}'"; ++$nummodqueueposts; }
if(is_moderator($moderated_forum, 'canapproveunapproveattachs'))
|
{
|
{
|
$flist_queue_attach .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_attach .= ",'".implode("','", $children)."'"; }
| $flist_queue_attach .= ",'{$moderated_forum}'";
|
++$nummodqueueattach; }
// For Reported posts
|
++$nummodqueueattach; }
// For Reported posts
|
if($forum['canmanagereportedposts'] == 1)
| if(is_moderator($moderated_forum, 'canmanagereportedposts'))
|
{
|
{
|
$flist_reports .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_reports .= ",'".implode("','", $children)."'"; }
| $flist_reports .= ",'{$moderated_forum}'";
|
++$numreportedposts; }
// For the Mod Log
|
++$numreportedposts; }
// For the Mod Log
|
if($forum['canviewmodlog'] == 1)
| if(is_moderator($moderated_forum, 'canviewmodlog'))
|
{
|
{
|
$flist_modlog .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_modlog .= ",'".implode("','", $children)."'"; }
| $flist_modlog .= ",'{$moderated_forum}'";
|
++$nummodlogs;
|
++$nummodlogs;
|
}
$flist .= ",'{$forum['fid']}'";
| }
|
|
|
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist .= ",'".implode("','", $children)."'"; } $moderated_forums[] = $forum['fid'];
| $flist .= ",'{$moderated_forum}'";
|
} if($flist_queue_threads) {
| } if($flist_queue_threads) {
|
Zeile 180 | Zeile 154 |
---|
$unviewablefids1 = $unviewablefids2 = array();
if($unviewableforums)
|
$unviewablefids1 = $unviewablefids2 = array();
if($unviewableforums)
|
{
| {
|
$flist .= " AND fid NOT IN ({$unviewableforums})"; $tflist .= " AND t.fid NOT IN ({$unviewableforums})";
| $flist .= " AND fid NOT IN ({$unviewableforums})"; $tflist .= " AND t.fid NOT IN ({$unviewableforums})";
|
Zeile 257 | Zeile 231 |
---|
if($mybb->usergroup['canuseipsearch'] == 1) { eval("\$nav_ipsearch = \"".$templates->get("modcp_nav_ipsearch")."\";");
|
if($mybb->usergroup['canuseipsearch'] == 1) { eval("\$nav_ipsearch = \"".$templates->get("modcp_nav_ipsearch")."\";");
|
}
| }
|
$plugins->run_hooks("modcp_nav");
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
$plugins->run_hooks("modcp_nav");
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
$expaltext = (in_array("modcpforums", $collapse)) ? "[+]" : "[-]";
| $expaltext = (in_array("modcpforums", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";"); }
if(!empty($nav_editprofile) || !empty($nav_banning) || !empty($nav_warninglogs) || !empty($nav_ipsearch)) {
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";"); }
if(!empty($nav_editprofile) || !empty($nav_banning) || !empty($nav_warninglogs) || !empty($nav_ipsearch)) {
|
$expaltext = (in_array("modcpusers", $collapse)) ? "[+]" : "[-]";
| $expaltext = (in_array("modcpusers", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;
|
eval("\$modcp_nav_users = \"".$templates->get("modcp_nav_users")."\";"); }
| eval("\$modcp_nav_users = \"".$templates->get("modcp_nav_users")."\";"); }
|
Zeile 337 | Zeile 311 |
---|
my_unsetcookie('inlinereports'); my_unsetcookie('inlinereports_removed');
|
my_unsetcookie('inlinereports'); my_unsetcookie('inlinereports_removed');
|
$page = $mybb->get_input('page', MyBB::INPUT_INT);
| $page = $mybb->get_input('page', MyBB::INPUT_INT);
|
redirect("modcp.php?action=reports&page={$page}", $message); }
| redirect("modcp.php?action=reports&page={$page}", $message); }
|
Zeile 416 | Zeile 390 |
---|
$plugins->run_hooks("modcp_reports_start");
// Reports
|
$plugins->run_hooks("modcp_reports_start");
// Reports
|
$reports = '';
| $reports = $selectall = ''; $inlinecount = 0;
|
$query = $db->query(" SELECT r.*, u.username, rr.title FROM ".TABLE_PREFIX."reportedcontent r
| $query = $db->query(" SELECT r.*, u.username, rr.title FROM ".TABLE_PREFIX."reportedcontent r
|
Zeile 532 | Zeile 508 |
---|
$plugins->run_hooks('modcp_reports_intermediate');
|
$plugins->run_hooks('modcp_reports_intermediate');
|
$inlinecount = 0;
| |
// Now that we have all of the information needed, display the reports foreach($reportcache as $report) {
| // Now that we have all of the information needed, display the reports foreach($reportcache as $report) {
|
Zeile 1283 | Zeile 1258 |
---|
$announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT);
if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
|
$announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT);
if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
|
{ error_no_permission(); }
// Deal with inline errors if(!empty($errors) || isset($preview)) {
| { error_no_permission(); }
// Deal with inline errors if(!empty($errors) || isset($preview)) {
|
if(!empty($errors)) { $errors = inline_error($errors);
|
if(!empty($errors)) { $errors = inline_error($errors);
|
} else {
| } else {
|
$errors = ''; }
| $errors = ''; }
|
Zeile 1314 | Zeile 1289 |
---|
$enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = $mybb->get_input('endtime_day', MyBB::INPUT_INT); $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
$enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = $mybb->get_input('endtime_day', MyBB::INPUT_INT); $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
}
| }
|
else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
| else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
|
Zeile 1334 | Zeile 1309 |
---|
);
$enddateyear = $startdateyear+1;
|
);
$enddateyear = $startdateyear+1;
|
}
// Generate form elements $startdateday = $enddateday = ''; for($day = 1; $day <= 31; ++$day) { if($startday == $day) { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
if($endday == $day) { $selected = " selected=\"selected\""; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } }
$startmonthsel = $endmonthsel = array(); foreach(array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12') as $month)
| }
// Generate form elements $startdateday = $enddateday = ''; for($day = 1; $day <= 31; ++$day) { if($startday == $day) { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
if($endday == $day) { $selected = " selected=\"selected\""; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } }
$startmonthsel = $endmonthsel = array(); foreach(array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12') as $month)
|
{ $startmonthsel[$month] = ''; $endmonthsel[$month] = '';
| { $startmonthsel[$month] = ''; $endmonthsel[$month] = '';
|
Zeile 1383 | Zeile 1358 |
---|
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
if($mybb->settings['announcementshtml'])
|
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
if($mybb->settings['announcementshtml'])
|
{
| {
|
if($announcement['allowhtml']) { $html_sel['yes'] = ' checked="checked"';
| if($announcement['allowhtml']) { $html_sel['yes'] = ' checked="checked"';
|
Zeile 1437 | Zeile 1412 |
---|
$announcementarray = array( 'aid' => 0, 'fid' => $announcement_fid,
|
$announcementarray = array( 'aid' => 0, 'fid' => $announcement_fid,
|
'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
| 'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
|
'allowhtml' => $mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT), 'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT),
| 'allowhtml' => $mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT), 'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT),
|
Zeile 1582 | Zeile 1557 |
---|
if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) || $enddate < 0 || $enddate == false) { $errors[] = $lang->error_invalid_end_date;
|
if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) || $enddate < 0 || $enddate == false) { $errors[] = $lang->error_invalid_end_date;
|
} elseif($enddate <= $startdate) { $errors[] = $lang->error_end_before_start; } }
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
| } elseif($enddate <= $startdate) { $errors[] = $lang->error_end_before_start; } }
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
|
{ $allowhtml = 1; }
| { $allowhtml = 1; }
|
Zeile 1887 | Zeile 1862 |
---|
require_once MYBB_ROOT."inc/functions_post.php"; $postbit = build_postbit($announcementarray, 3); eval("\$preview = \"".$templates->get("previewpost")."\";");
|
require_once MYBB_ROOT."inc/functions_post.php"; $postbit = build_postbit($announcementarray, 3); eval("\$preview = \"".$templates->get("previewpost")."\";");
|
} else
| } else
|
{ $preview = ''; }
| { $preview = ''; }
|
Zeile 1935 | Zeile 1910 |
---|
foreach($global_announcements as $aid => $announcement) { $trow = alt_trow();
|
foreach($global_announcements as $aid => $announcement) { $trow = alt_trow();
|
if($announcement['startdate'] > TIME_NOW || ($announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0))
| if((isset($announcement['startdate']) && $announcement['startdate'] > TIME_NOW) || (isset($announcement['enddate']) && $announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0))
|
{ eval("\$icon = \"".$templates->get("modcp_announcements_announcement_expired")."\";"); }
| { eval("\$icon = \"".$templates->get("modcp_announcements_announcement_expired")."\";"); }
|
Zeile 2109 | Zeile 2084 |
---|
else if($action == "delete") { remove_attachment($attachment['pid'], '', $attachment['aid']);
|
else if($action == "delete") { remove_attachment($attachment['pid'], '', $attachment['aid']);
|
} }
$plugins->run_hooks("modcp_do_modqueue_end");
| } }
$plugins->run_hooks("modcp_do_modqueue_end");
|
redirect("modcp.php?action=modqueue&type=attachments", $lang->redirect_attachmentsmoderated); }
| redirect("modcp.php?action=modqueue&type=attachments", $lang->redirect_attachmentsmoderated); }
|
Zeile 2131 | Zeile 2106 |
---|
{ error($lang->you_cannot_use_mod_queue); }
|
{ error($lang->you_cannot_use_mod_queue); }
|
|
|
$mybb->input['type'] = $mybb->get_input('type'); $threadqueue = $postqueue = $attachmentqueue = ''; if($mybb->input['type'] == "threads" || !$mybb->input['type'] && ($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1))
| $mybb->input['type'] = $mybb->get_input('type'); $threadqueue = $postqueue = $attachmentqueue = ''; if($mybb->input['type'] == "threads" || !$mybb->input['type'] && ($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1))
|
Zeile 2139 | Zeile 2114 |
---|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
}
| }
|
$forum_cache = $cache->read("forums");
$query = $db->simple_select("threads", "COUNT(tid) AS unapprovedthreads", "visible='0' {$flist_queue_threads}");
| $forum_cache = $cache->read("forums");
$query = $db->simple_select("threads", "COUNT(tid) AS unapprovedthreads", "visible='0' {$flist_queue_threads}");
|
Zeile 2159 | Zeile 2134 |
---|
if($mybb->get_input('page') == "last") { $page = $pages;
|
if($mybb->get_input('page') == "last") { $page = $pages;
|
}
| }
|
if($page > $pages || $page <= 0)
|
if($page > $pages || $page <= 0)
|
{
| {
|
$page = 1; }
if($page)
|
$page = 1; }
if($page)
|
{ $start = ($page-1) * $perpage;
| { $start = ($page-1) * $perpage;
|
} else {
| } else {
|
Zeile 2185 | Zeile 2160 |
---|
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid) WHERE t.visible='0' {$tflist_queue_threads} ORDER BY t.lastpost DESC
|
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid) WHERE t.visible='0' {$tflist_queue_threads} ORDER BY t.lastpost DESC
|
LIMIT {$start}, {$perpage} ");
| LIMIT {$start}, {$perpage} ");
|
$threads = ''; while($thread = $db->fetch_array($query)) {
| $threads = ''; while($thread = $db->fetch_array($query)) {
|
Zeile 2196 | Zeile 2171 |
---|
$forum_link = get_forum_link($thread['fid']); $forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date('relative', $thread['dateline']);
|
$forum_link = get_forum_link($thread['fid']); $forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date('relative', $thread['dateline']);
|
|
|
if($thread['username'] == "") { if($thread['threadusername'] != "")
| if($thread['username'] == "") { if($thread['threadusername'] != "")
|
Zeile 2223 | Zeile 2198 |
---|
if(!$threads && $mybb->input['type'] == "threads") { eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";");
|
if(!$threads && $mybb->input['type'] == "threads") { eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";");
|
}
| }
|
if($threads) { add_breadcrumb($lang->mcp_nav_modqueue_threads, "modcp.php?action=modqueue&type=threads");
|
if($threads) { add_breadcrumb($lang->mcp_nav_modqueue_threads, "modcp.php?action=modqueue&type=threads");
|
|
|
$plugins->run_hooks("modcp_modqueue_threads_end");
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
|
$plugins->run_hooks("modcp_modqueue_threads_end");
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
|
{ $navsep = " | ";
| { $navsep = " | ";
|
eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); }
| eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); }
|
Zeile 2261 | Zeile 2236 |
---|
$query = $db->query(" SELECT COUNT(pid) AS unapprovedposts
|
$query = $db->query(" SELECT COUNT(pid) AS unapprovedposts
|
FROM ".TABLE_PREFIX."posts p
| FROM ".TABLE_PREFIX."posts p
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid ");
| LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid ");
|
Zeile 2288 | Zeile 2263 |
---|
}
if($page)
|
}
if($page)
|
{
| {
|
$start = ($page-1) * $perpage; } else
| $start = ($page-1) * $perpage; } else
|
Zeile 2305 | Zeile 2280 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT {$start}, {$perpage} "); $posts = '';
| LIMIT {$start}, {$perpage} "); $posts = '';
|
Zeile 2326 | Zeile 2301 |
---|
{ $post['postusername'] = htmlspecialchars_uni($post['postusername']); $profile_link = $post['postusername'];
|
{ $post['postusername'] = htmlspecialchars_uni($post['postusername']); $profile_link = $post['postusername'];
|
}
| }
|
else { $profile_link = $lang->guest; }
|
else { $profile_link = $lang->guest; }
|
}
| }
|
else { $post['username'] = htmlspecialchars_uni($post['username']); $profile_link = build_profile_link($post['username'], $post['uid']);
|
else { $post['username'] = htmlspecialchars_uni($post['username']); $profile_link = build_profile_link($post['username'], $post['uid']);
|
}
| }
|
eval("\$thread = \"".$templates->get("modcp_modqueue_link_thread")."\";"); eval("\$forum = \"".$templates->get("modcp_modqueue_link_forum")."\";"); $post['message'] = nl2br(htmlspecialchars_uni($post['message']));
| eval("\$thread = \"".$templates->get("modcp_modqueue_link_thread")."\";"); eval("\$forum = \"".$templates->get("modcp_modqueue_link_forum")."\";"); $post['message'] = nl2br(htmlspecialchars_uni($post['message']));
|
Zeile 2345 | Zeile 2320 |
---|
}
if(!$posts && $mybb->input['type'] == "posts")
|
}
if(!$posts && $mybb->input['type'] == "posts")
|
{
| {
|
eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
|
eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
|
|
|
if($posts) { add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
$plugins->run_hooks("modcp_modqueue_posts_end");
|
if($posts) { add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
$plugins->run_hooks("modcp_modqueue_posts_end");
|
|
|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { $navsep = " | ";
| if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { $navsep = " | ";
|
Zeile 2372 | Zeile 2347 |
---|
output_page($postqueue); } }
|
output_page($postqueue); } }
|
|
|
if($mybb->input['type'] == "attachments" || (!$mybb->input['type'] && !$postqueue && !$threadqueue && $mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1))) { if($mybb->settings['enableattachments'] == 0)
| if($mybb->input['type'] == "attachments" || (!$mybb->input['type'] && !$postqueue && !$threadqueue && $mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1))) { if($mybb->settings['enableattachments'] == 0)
|
Zeile 2410 | Zeile 2385 |
---|
}
if($page > $pages || $page <= 0)
|
}
if($page > $pages || $page <= 0)
|
{ $page = 1; }
| { $page = 1; }
|
if($page)
|
if($page)
|
{
| {
|
$start = ($page-1) * $perpage; } else { $start = 0; $page = 1;
|
$start = ($page-1) * $perpage; } else { $start = 0; $page = 1;
|
}
| }
|
$multipage = multipage($unapproved_attachments, $perpage, $page, "modcp.php?action=modqueue&type=attachments");
| $multipage = multipage($unapproved_attachments, $perpage, $page, "modcp.php?action=modqueue&type=attachments");
|
Zeile 2440 | Zeile 2415 |
---|
while($attachment = $db->fetch_array($query)) { $altbg = alt_trow();
|
while($attachment = $db->fetch_array($query)) { $altbg = alt_trow();
|
|
|
if(!$attachment['dateuploaded']) { $attachment['dateuploaded'] = $attachment['dateline'];
| if(!$attachment['dateuploaded']) { $attachment['dateuploaded'] = $attachment['dateline'];
|
Zeile 2459 | Zeile 2434 |
---|
$profile_link = build_profile_link($attachment['username'], $attachment['uid']);
eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";");
|
$profile_link = build_profile_link($attachment['username'], $attachment['uid']);
eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";");
|
}
| }
|
if(!$attachments && $mybb->input['type'] == "attachments") {
| if(!$attachments && $mybb->input['type'] == "attachments") {
|
Zeile 2475 | Zeile 2450 |
---|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";");
|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";");
|
$navsep = " | "; }
| $navsep = " | "; }
|
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); $navsep = " | "; }
|
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); $navsep = " | "; }
|
|
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$attachmentqueue = \"".$templates->get("modcp_modqueue_attachments")."\";"); output_page($attachmentqueue);
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$attachmentqueue = \"".$templates->get("modcp_modqueue_attachments")."\";"); output_page($attachmentqueue);
|
} }
| } }
|
// Still nothing? All queues are empty! :-D if(!$threadqueue && !$postqueue && !$attachmentqueue) { add_breadcrumb($lang->mcp_nav_modqueue, "modcp.php?action=modqueue");
|
// Still nothing? All queues are empty! :-D if(!$threadqueue && !$postqueue && !$attachmentqueue) { add_breadcrumb($lang->mcp_nav_modqueue, "modcp.php?action=modqueue");
|
|
|
$plugins->run_hooks("modcp_modqueue_end");
eval("\$queue = \"".$templates->get("modcp_modqueue_empty")."\";"); output_page($queue);
|
$plugins->run_hooks("modcp_modqueue_end");
eval("\$queue = \"".$templates->get("modcp_modqueue_empty")."\";"); output_page($queue);
|
}
| }
|
}
|
}
|
|
|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request
|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request
|
verify_post_check($mybb->input['my_post_key']);
| verify_post_check($mybb->get_input('my_post_key'));
|
if($mybb->usergroup['caneditprofiles'] == 0)
|
if($mybb->usergroup['caneditprofiles'] == 0)
|
{ error_no_permission();
| { error_no_permission();
|
}
$user = get_user($mybb->input['uid']);
| }
$user = get_user($mybb->input['uid']);
|
Zeile 2537 | Zeile 2512 |
---|
$mybb->input['awaymonth'] = my_date('n', $awaydate); } if(!$mybb->get_input('awayyear', MyBB::INPUT_INT))
|
$mybb->input['awaymonth'] = my_date('n', $awaydate); } if(!$mybb->get_input('awayyear', MyBB::INPUT_INT))
|
{
| {
|
$mybb->input['awayyear'] = my_date('Y', $awaydate); }
| $mybb->input['awayyear'] = my_date('Y', $awaydate); }
|
Zeile 2564 | Zeile 2539 |
---|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
); }
| ); }
|
else { $away = array(
| else { $away = array(
|
Zeile 2587 | Zeile 2562 |
---|
"profile_fields_editable" => true, "website" => $mybb->get_input('website'), "icq" => $mybb->get_input('icq'),
|
"profile_fields_editable" => true, "website" => $mybb->get_input('website'), "icq" => $mybb->get_input('icq'),
|
"yahoo" => $mybb->get_input('yahoo'),
| |
"skype" => $mybb->get_input('skype'), "google" => $mybb->get_input('google'), "signature" => $mybb->get_input('signature'),
| "skype" => $mybb->get_input('skype'), "google" => $mybb->get_input('google'), "signature" => $mybb->get_input('signature'),
|
Zeile 2604 | Zeile 2578 |
---|
if(!empty($mybb->input['usertitle'])) { $updated_user['usertitle'] = $mybb->get_input('usertitle');
|
if(!empty($mybb->input['usertitle'])) { $updated_user['usertitle'] = $mybb->get_input('usertitle');
|
}
| }
|
else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
| else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
|
Zeile 2617 | Zeile 2591 |
---|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
$errors = '';
| $errors = array();
|
// Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
| // Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
|
Zeile 2689 | Zeile 2663 |
---|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
if(!is_array($errors))
| else
|
{ $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
| { $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
|
Zeile 2727 | Zeile 2700 |
---|
// Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting
|
// Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting
|
if(isset($extra_user_updates) && $extra_user_updates['moderateposts'] && $extra_user_updates['suspendposting'])
| if(isset($extra_user_updates) && !empty($extra_user_updates['moderateposts']) && !empty($extra_user_updates['suspendposting']))
|
{ $errors[] = $lang->suspendmoderate_error; }
|
{ $errors[] = $lang->suspendmoderate_error; }
|
if(is_array($errors))
| if(is_array($errors) && !empty($errors))
|
{ $mybb->input['action'] = "editprofile"; }
| { $mybb->input['action'] = "editprofile"; }
|
Zeile 2780 | Zeile 2753 |
---|
// Set display group $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
// Set display group $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
| if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
|
$display_group = usergroup_displaygroup($user['displaygroup']); if(is_array($display_group)) { $userperms = array_merge($userperms, $display_group);
|
$display_group = usergroup_displaygroup($user['displaygroup']); if(is_array($display_group)) { $userperms = array_merge($userperms, $display_group);
|
}
| }
|
if(!my_validate_url($user['website']))
|
if(!my_validate_url($user['website']))
|
{
| {
|
$user['website'] = ''; }
if($user['icq'] != "0") { $user['icq'] = (int)$user['icq'];
|
$user['website'] = ''; }
if($user['icq'] != "0") { $user['icq'] = (int)$user['icq'];
|
}
| }
|
if(!$errors) { $mybb->input = array_merge($user, $mybb->input);
| if(!$errors) { $mybb->input = array_merge($user, $mybb->input);
|
Zeile 2813 | Zeile 2792 |
---|
else { $errors = inline_error($errors);
|
else { $errors = inline_error($errors);
|
}
| }
|
// Sanitize all input
|
// Sanitize all input
|
foreach(array('usertitle', 'website', 'icq', 'yahoo', 'skype', 'google', 'signature', 'birthday_day', 'birthday_month', 'birthday_year') as $field)
| foreach(array('usertitle', 'website', 'icq', 'skype', 'google', 'signature', 'birthday_day', 'birthday_month', 'birthday_year') as $field)
|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->get_input($field)); }
// Custom user title if(!empty($userperms['usertitle']))
|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->get_input($field)); }
// Custom user title if(!empty($userperms['usertitle']))
|
{
| {
|
$defaulttitle = htmlspecialchars_uni($userperms['usertitle']); } else
| $defaulttitle = htmlspecialchars_uni($userperms['usertitle']); } else
|
Zeile 2832 | Zeile 2811 |
---|
$usertitles = $cache->read('usertitles');
foreach($usertitles as $title)
|
$usertitles = $cache->read('usertitles');
foreach($usertitles as $title)
|
{
| {
|
if($title['posts'] <= $user['postnum']) {
|
if($title['posts'] <= $user['postnum']) {
|
$defaulttitle = $title['title'];
| $defaulttitle = htmlspecialchars_uni($title['title']);
|
break; }
|
break; }
|
} }
$user['usertitle'] = htmlspecialchars_uni($user['usertitle']);
| } }
$user['usertitle'] = htmlspecialchars_uni($user['usertitle']);
|
if(empty($user['usertitle'])) { $lang->current_custom_usertitle = '';
| if(empty($user['usertitle'])) { $lang->current_custom_usertitle = '';
|
Zeile 2869 | Zeile 2848 |
---|
$bdaymonthsel[$month] = ''; } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
$bdaymonthsel[$month] = ''; } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
| $awaysection = '';
|
if($mybb->settings['allowaway'] != 0) {
| if($mybb->settings['allowaway'] != 0) {
|
Zeile 2941 | Zeile 2922 |
---|
$plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
|
$plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
|
| $user_fields = array();
|
$query = $db->simple_select("userfields", "*", "ufid='{$user['uid']}'");
|
$query = $db->simple_select("userfields", "*", "ufid='{$user['uid']}'");
|
$user_fields = $db->fetch_array($query);
| if($db->num_rows($query) > 0) { $user_fields = $db->fetch_array($query); }
|
$requiredfields = ''; $customfields = '';
| $requiredfields = ''; $customfields = '';
|
Zeile 2973 | Zeile 2958 |
---|
$userfield = $mybb->input['profile_fields'][$field]; } }
|
$userfield = $mybb->input['profile_fields'][$field]; } }
|
else {
| elseif(isset($user_fields[$field])) {
|
$userfield = $user_fields[$field]; } if($type == "multiselect")
|
$userfield = $user_fields[$field]; } if($type == "multiselect")
|
{
| {
|
if($errors) { $useropts = $userfield; } else
|
if($errors) { $useropts = $userfield; } else
|
{
| {
|
$useropts = explode("\n", $userfield); } if(is_array($useropts)) { foreach($useropts as $key => $val)
|
$useropts = explode("\n", $userfield); } if(is_array($useropts)) { foreach($useropts as $key => $val)
|
{
| {
|
$seloptions[$val] = $val; } }
| $seloptions[$val] = $val; } }
|
Zeile 3001 | Zeile 2986 |
---|
{ $val = trim($val); $val = str_replace("\n", "\\n", $val);
|
{ $val = trim($val); $val = str_replace("\n", "\\n", $val);
|
| $sel = ""; if(isset($seloptions[$val]) && $val == $seloptions[$val]) { $sel = " selected=\"selected\""; }
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) { $profilefield['length'] = 3; }
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";"); } } elseif($type == "select") { $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) { $val = trim($val); $val = str_replace("\n", "\\n", $val);
|
$sel = "";
|
$sel = "";
|
if(isset($seloptions[$val]) && $val == $seloptions[$val])
| if($val == $userfield)
|
{ $sel = " selected=\"selected\""; }
|
{ $sel = " selected=\"selected\""; }
|
|
|
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) {
|
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) {
|
$profilefield['length'] = 3;
| $profilefield['length'] = 1;
|
}
|
}
|
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";");
| eval("\$code = \"".$templates->get("usercp_profile_profilefields_select")."\";");
|
} }
|
} }
|
elseif($type == "select")
| elseif($type == "radio")
|
{ $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) {
|
{ $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) {
|
$val = trim($val); $val = str_replace("\n", "\\n", $val); $sel = ""; if($val == $userfield)
| $checked = ""; if($val == $userfield)
|
{
|
{
|
$sel = " selected=\"selected\""; }
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) { $profilefield['length'] = 1; }
eval("\$code = \"".$templates->get("usercp_profile_profilefields_select")."\";"); } } elseif($type == "radio") { $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) { $checked = ""; if($val == $userfield) { $checked = " checked=\"checked\"";
| $checked = " checked=\"checked\"";
|
}
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_radio")."\";");
| }
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_radio")."\";");
|
Zeile 3061 | Zeile 3046 |
---|
} } elseif($type == "checkbox")
|
} } elseif($type == "checkbox")
|
{
| {
|
if($errors)
|
if($errors)
|
{
| {
|
$useropts = $userfield; } else
|
$useropts = $userfield; } else
|
{
| {
|
$useropts = explode("\n", $userfield); } if(is_array($useropts))
| $useropts = explode("\n", $userfield); } if(is_array($useropts))
|
Zeile 3096 | Zeile 3081 |
---|
{ $value = htmlspecialchars_uni($userfield); eval("\$code = \"".$templates->get("usercp_profile_profilefields_textarea")."\";");
|
{ $value = htmlspecialchars_uni($userfield); eval("\$code = \"".$templates->get("usercp_profile_profilefields_textarea")."\";");
|
} else
| } else
|
{ $value = htmlspecialchars_uni($userfield); $maxlength = "";
| { $value = htmlspecialchars_uni($userfield); $maxlength = "";
|
Zeile 3247 | Zeile 3232 |
---|
$selected = "selected=\"selected\""; } else
|
$selected = "selected=\"selected\""; } else
|
{
| {
|
$selected = ''; }
| $selected = ''; }
|
Zeile 3283 | Zeile 3268 |
---|
$user_icq = $mybb->input['icq']; $user_skype = $mybb->input['skype']; $user_google = $mybb->input['google'];
|
$user_icq = $mybb->input['icq']; $user_skype = $mybb->input['skype']; $user_google = $mybb->input['google'];
|
$user_yahoo = $mybb->input['yahoo'];
| |
$plugins->run_hooks("modcp_editprofile_end");
| $plugins->run_hooks("modcp_editprofile_end");
|
Zeile 3431 | Zeile 3415 |
---|
$plugins->run_hooks("modcp_finduser_end");
|
$plugins->run_hooks("modcp_finduser_end");
|
$username = $mybb->get_input('username');
| $username = htmlspecialchars_uni($mybb->get_input('username'));
|
eval("\$finduser = \"".$templates->get("modcp_finduser")."\";"); output_page($finduser); }
| eval("\$finduser = \"".$templates->get("modcp_finduser")."\";"); output_page($finduser); }
|
Zeile 3546 | Zeile 3530 |
---|
else { $ordersel['asc'] = ' selected="selected"';
|
else { $ordersel['asc'] = ' selected="selected"';
|
}
$plugins->run_hooks("modcp_warninglogs_start");
| }
$plugins->run_hooks("modcp_warninglogs_start");
|
// Pagination stuff $sql = " SELECT COUNT(wid) as count
| // Pagination stuff $sql = " SELECT COUNT(wid) as count
|
Zeile 3563 | Zeile 3547 |
---|
$total_warnings = $db->fetch_field($query, 'count'); $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page <= 0)
|
$total_warnings = $db->fetch_field($query, 'count'); $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page <= 0)
|
{
| {
|
$page = 1; } $per_page = 20;
| $page = 1; } $per_page = 20;
|
Zeile 3572 | Zeile 3556 |
---|
$per_page = (int)$mybb->input['filter']['per_page']; } $start = ($page-1) * $per_page;
|
$per_page = (int)$mybb->input['filter']['per_page']; } $start = ($page-1) * $per_page;
|
| $pages = ceil($total_warnings / $per_page); if($page > $pages) { $start = 0; $page = 1; }
|
// Build the base URL for pagination links $url = 'modcp.php?action=warninglogs'; if(is_array($mybb->input['filter']) && count($mybb->input['filter']))
| // Build the base URL for pagination links $url = 'modcp.php?action=warninglogs'; if(is_array($mybb->input['filter']) && count($mybb->input['filter']))
|
Zeile 3666 | Zeile 3656 |
---|
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
| $ipsearch_results = $ipaddressvalue = '';
|
$mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) {
| $mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) {
|
Zeile 3683 | Zeile 3674 |
---|
// Searching post IP addresses if(isset($mybb->input['search_posts'])) {
|
// Searching post IP addresses if(isset($mybb->input['search_posts'])) {
|
| $post_ip_sql = '';
|
if($ip_range) { if(!is_array($ip_range))
| if($ip_range) { if(!is_array($ip_range))
|
Zeile 3698 | Zeile 3690 |
---|
$plugins->run_hooks("modcp_ipsearch_posts_start");
if($post_ip_sql)
|
$plugins->run_hooks("modcp_ipsearch_posts_start");
if($post_ip_sql)
|
{
| {
|
$where_sql = '';
$unviewable_forums = get_unviewable_forums(true);
| $where_sql = '';
$unviewable_forums = get_unviewable_forums(true);
|
Zeile 3777 | Zeile 3769 |
---|
// Searching user IP addresses if(isset($mybb->input['search_users'])) {
|
// Searching user IP addresses if(isset($mybb->input['search_users'])) {
|
| $user_ip_sql = '';
|
if($ip_range) { if(!is_array($ip_range))
| if($ip_range) { if(!is_array($ip_range))
|
Zeile 3918 | Zeile 3911 |
---|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = p.tid) WHERE {$post_ip_sql}{$where_sql}{$visible_sql}
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = p.tid) WHERE {$post_ip_sql}{$where_sql}{$visible_sql}
|
ORDER BY p.dateline desc
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT {$post_start}, {$post_limit} "); while($ipaddress = $db->fetch_array($query))
| LIMIT {$post_start}, {$post_limit} "); while($ipaddress = $db->fetch_array($query))
|
Zeile 3947 | Zeile 3940 |
---|
foreach($ipaddresses as $ipaddress) { $ip = my_inet_ntop($db->unescape_binary($ipaddress['ipaddress']));
|
foreach($ipaddresses as $ipaddress) { $ip = my_inet_ntop($db->unescape_binary($ipaddress['ipaddress']));
|
if(!$ipaddress['username'])
| if(empty($ipaddress['username']))
|
{ $ipaddress['username'] = $ipaddress['postusername']; // Guest username support } $ipaddress['username'] = htmlspecialchars_uni($ipaddress['username']); $trow = alt_trow();
|
{ $ipaddress['username'] = $ipaddress['postusername']; // Guest username support } $ipaddress['username'] = htmlspecialchars_uni($ipaddress['username']); $trow = alt_trow();
|
if(!$ipaddress['subject'])
| if(empty($ipaddress['subject']))
|
{ $ipaddress['subject'] = "RE: {$ipaddress['threadsubject']}"; }
| { $ipaddress['subject'] = "RE: {$ipaddress['threadsubject']}"; }
|
Zeile 4233 | Zeile 4226 |
---|
$updated_group = array( 'usergroup' => $ban['oldgroup'],
|
$updated_group = array( 'usergroup' => $ban['oldgroup'],
|
'additionalgroups' => $ban['oldadditionalgroups'],
| 'additionalgroups' => $db->escape_string($ban['oldadditionalgroups']),
|
'displaygroup' => $ban['olddisplaygroup'] ); $db->update_query("users", $updated_group, "uid='{$ban['uid']}'"); $db->delete_query("banned", "uid='{$ban['uid']}'");
|
'displaygroup' => $ban['olddisplaygroup'] ); $db->update_query("users", $updated_group, "uid='{$ban['uid']}'"); $db->delete_query("banned", "uid='{$ban['uid']}'");
|
$cache->update_banned();
| |
$cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
| $cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
|
Zeile 4259 | Zeile 4251 |
---|
}
// Editing an existing ban
|
}
// Editing an existing ban
|
| $existing_ban = false;
|
if($mybb->get_input('uid', MyBB::INPUT_INT)) { // Get the users info from their uid
| if($mybb->get_input('uid', MyBB::INPUT_INT)) { // Get the users info from their uid
|
Zeile 4270 | Zeile 4263 |
---|
"); $user = $db->fetch_array($query);
|
"); $user = $db->fetch_array($query);
|
$existing_ban = false;
| |
if($user['uid']) { $existing_ban = true;
| if($user['uid']) { $existing_ban = true;
|
Zeile 4330 | Zeile 4322 |
---|
// If this is a new ban, we check the user isn't already part of a banned group if(!$existing_ban && $user['uid']) {
|
// If this is a new ban, we check the user isn't already part of a banned group if(!$existing_ban && $user['uid']) {
|
$query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid"))
| $query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'", array('limit' => 1)); if($db->num_rows($query) > 0)
|
{ $errors[] = $lang->error_useralreadybanned; }
| { $errors[] = $lang->error_useralreadybanned; }
|
Zeile 4376 | Zeile 4368 |
---|
'uid' => $user['uid'], 'gid' => $mybb->get_input('usergroup', MyBB::INPUT_INT), 'oldgroup' => (int)$user['usergroup'],
|
'uid' => $user['uid'], 'gid' => $mybb->get_input('usergroup', MyBB::INPUT_INT), 'oldgroup' => (int)$user['usergroup'],
|
'oldadditionalgroups' => (string)$user['additionalgroups'],
| 'oldadditionalgroups' => $db->escape_string($user['additionalgroups']),
|
'olddisplaygroup' => (int)$user['displaygroup'], 'admin' => (int)$mybb->user['uid'], 'dateline' => TIME_NOW,
| 'olddisplaygroup' => (int)$user['displaygroup'], 'admin' => (int)$mybb->user['uid'], 'dateline' => TIME_NOW,
|
Zeile 4395 | Zeile 4387 |
---|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
$cache->update_banned();
| |
// Log edit or add ban if($existing_ban)
| // Log edit or add ban if($existing_ban)
|
Zeile 4413 | Zeile 4403 |
---|
if($existing_ban) { redirect("modcp.php?action=banning", $lang->redirect_banuser_updated);
|
if($existing_ban) { redirect("modcp.php?action=banning", $lang->redirect_banuser_updated);
|
}
| }
|
else { redirect("modcp.php?action=banning", $lang->redirect_banuser); } } // Otherwise has errors, throw back to ban page
|
else { redirect("modcp.php?action=banning", $lang->redirect_banuser); } } // Otherwise has errors, throw back to ban page
|
else {
| else {
|
$mybb->input['action'] = "banuser"; } }
| $mybb->input['action'] = "banuser"; } }
|
Zeile 4436 | Zeile 4426 |
---|
}
$mybb->input['uid'] = $mybb->get_input('uid', MyBB::INPUT_INT);
|
}
$mybb->input['uid'] = $mybb->get_input('uid', MyBB::INPUT_INT);
|
if($mybb->input['uid']) {
| if($mybb->input['uid']) {
|
add_breadcrumb($lang->mcp_nav_editing_ban);
|
add_breadcrumb($lang->mcp_nav_editing_ban);
|
}
| }
|
else { add_breadcrumb($lang->mcp_nav_ban_user); }
|
else { add_breadcrumb($lang->mcp_nav_ban_user); }
|
|
|
$plugins->run_hooks("modcp_banuser_start");
$banuser_username = '';
| $plugins->run_hooks("modcp_banuser_start");
$banuser_username = '';
|
Zeile 4460 | Zeile 4450 |
---|
WHERE b.uid='{$mybb->input['uid']}' "); $banned = $db->fetch_array($query);
|
WHERE b.uid='{$mybb->input['uid']}' "); $banned = $db->fetch_array($query);
|
if($banned['username']) {
| if(!empty($banned['username'])) {
|
$username = $banned['username'] = htmlspecialchars_uni($banned['username']); $banreason = htmlspecialchars_uni($banned['reason']); $uid = $mybb->input['uid']; $user = get_user($banned['uid']); $lang->ban_user = $lang->edit_ban; // Swap over lang variables eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";");
|
$username = $banned['username'] = htmlspecialchars_uni($banned['username']); $banreason = htmlspecialchars_uni($banned['reason']); $uid = $mybb->input['uid']; $user = get_user($banned['uid']); $lang->ban_user = $lang->edit_ban; // Swap over lang variables eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";");
|
} }
| } }
|
// Permission to edit this ban?
|
// Permission to edit this ban?
|
if($banned['uid'] && $mybb->user['uid'] != $banned['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1)
| if(!empty($banned) && $banned['uid'] && $mybb->user['uid'] != $banned['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 4526 | Zeile 4516 |
---|
$thatime = my_date("D, jS M Y @ {$mybb->settings['timeformat']}", ban_date2timestamp($time, $dateline)); $thattime = " ({$thatime})";
|
$thatime = my_date("D, jS M Y @ {$mybb->settings['timeformat']}", ban_date2timestamp($time, $dateline)); $thattime = " ({$thatime})";
|
}
| }
|
eval("\$liftlist .= \"".$templates->get("modcp_banuser_liftlist")."\";"); }
| eval("\$liftlist .= \"".$templates->get("modcp_banuser_liftlist")."\";"); }
|
Zeile 4653 | Zeile 4643 |
---|
}
eval("\$awaitingattachments = \"".$templates->get("modcp_awaitingattachments")."\";");
|
}
eval("\$awaitingattachments = \"".$templates->get("modcp_awaitingattachments")."\";");
|
}
| }
|
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1) {
| if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1) {
|
Zeile 4672 | Zeile 4662 |
---|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT 1 "); $post = $db->fetch_array($query);
| LIMIT 1 "); $post = $db->fetch_array($query);
|
Zeile 4792 | Zeile 4782 |
---|
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) { $data = my_unserialize($logitem['data']);
|
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) { $data = my_unserialize($logitem['data']);
|
if($data['uid'])
| if(isset($data['uid']))
|
{ $information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid'])); }
|
{ $information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid'])); }
|
if($data['aid'])
| if(isset($data['aid']))
|
{ $data['subject'] = htmlspecialchars_uni($parser->parse_badwords($data['subject'])); $data['announcement'] = get_announcement_link($data['aid']);
| { $data['subject'] = htmlspecialchars_uni($parser->parse_badwords($data['subject'])); $data['announcement'] = get_announcement_link($data['aid']);
|
Zeile 4911 | Zeile 4901 |
---|
eval("\$bannedusers = \"".$templates->get("modcp_nobanned")."\";"); }
|
eval("\$bannedusers = \"".$templates->get("modcp_nobanned")."\";"); }
|
$modnotes = $cache->read("modnotes"); $modnotes = htmlspecialchars_uni($modnotes['modmessage']);
| $modnotes = ''; $modnotes_cache = $cache->read("modnotes"); if($modnotes_cache !== false) { $modnotes = htmlspecialchars_uni($modnotes_cache['modmessage']); }
|
$plugins->run_hooks("modcp_end");
| $plugins->run_hooks("modcp_end");
|