Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: modcp.php 5585 2011-09-13 13:14:41Z Tomm $
| * $Id$
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'modcp.php');
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'modcp.php');
|
$templatelist = "modcp_reports,modcp_reports_report,modcp_reports_multipage,modcp_reports_allreport"; $templatelist .= ",modcp_reports_allnoreports,modcp_reports_noreports,modcp_banning,modcp_banning_ban"; $templatelist .= ",modcp_banning_multipage,modcp_banning_nobanned,modcp_banning_auser,modcp_banning_error"; $templatelist .= ",modcp_banning_edit,modcp_banning_banned_user,modcp_nav,modcp_modlogs_noresults,modcp"; $templatelist .= ",modcp_no_announcements_global,modcp_announcements_global,modcp_announcements_forum,modcp_announcements"; $templatelist .= ",codebuttons,smilieinsert,modcp_announcements_new,modcp_modqueue_empty,forumjump_bit,forumjump_special"; $templatelist .= ",modcp_modlogs,modcp_finduser_user,modcp_finduser,usercp_profile_customfield,usercp_profile_profilefields"; $templatelist .= ",modcp_editprofile,modcp_ipsearch,modcp_banuser_addusername,modcp_banuser,modcp_warninglogs_nologs"; $templatelist .= ",modcp_warninglogs,modcp_modlogs_result,modcp_editprofile_signature_info,modcp_editprofile_signature_options,modcp_editprofile_signature";
| $templatelist = "modcp_reports,modcp_reports_report,modcp_reports_multipage,modcp_reports_allreport,modcp_reports_allreports,modcp_modlogs_multipage,modcp_announcements_delete,modcp_announcements_edit"; $templatelist .= ",modcp_reports_allnoreports,modcp_reports_noreports,modcp_banning,modcp_banning_ban,modcp_announcements_announcement_global,modcp_no_announcements_forum,modcp_modqueue_threads_thread"; $templatelist .= ",modcp_banning_multipage,modcp_banning_nobanned,modcp_modqueue_threads_empty,modcp_modqueue_masscontrols,modcp_modqueue_threads,modcp_modqueue_posts_post,modcp_modqueue_posts_empty"; $templatelist .= ",modcp_nav,modcp_modlogs_noresults,modcp,modcp_modqueue_posts,modcp_modqueue_attachments_attachment,modcp_modqueue_attachments_empty,modcp_modqueue_attachments,modcp_editprofile_suspensions_info"; $templatelist .= ",modcp_no_announcements_global,modcp_announcements_global,modcp_announcements_forum,modcp_announcements,modcp_editprofile_select_option,modcp_editprofile_select,modcp_finduser_noresults"; $templatelist .= ",codebuttons,smilieinsert,modcp_announcements_new,modcp_modqueue_empty,forumjump_bit,forumjump_special,modcp_warninglogs_warning_revoked,modcp_warninglogs_warning,modcp_ipsearch_result"; $templatelist .= ",modcp_modlogs,modcp_finduser_user,modcp_finduser,usercp_profile_customfield,usercp_profile_profilefields,modcp_ipsearch_noresults,modcp_ipsearch_results,modcp_ipsearch_misc_info"; $templatelist .= ",modcp_editprofile,modcp_ipsearch,modcp_banuser_addusername,modcp_banuser,modcp_warninglogs_nologs,modcp_banuser_editusername,modcp_lastattachment,modcp_lastpost,modcp_lastthread"; $templatelist .= ",modcp_warninglogs,modcp_modlogs_result,modcp_editprofile_signature,forumjump_advanced,smilieinsert_getmore,modcp_announcements_forum_nomod,modcp_announcements_announcement,multipage_prevpage"; $templatelist .= ",multipage_start,multipage_page_current,multipage_page,multipage_end,multipage_nextpage,multipage";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_user.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_user.php";
|
Zeile 50 | Zeile 51 |
---|
while($forum = $db->fetch_array($query)) { $flist .= ",'{$forum['fid']}'";
|
while($forum = $db->fetch_array($query)) { $flist .= ",'{$forum['fid']}'";
|
|
|
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist .= ",'".implode("','", $children)."'"; } $moderated_forums[] = $forum['fid'];
|
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist .= ",'".implode("','", $children)."'"; } $moderated_forums[] = $forum['fid'];
|
}
| }
|
if($flist) { $tflist = " AND t.fid IN (0{$flist})"; $flist = " AND fid IN (0{$flist})";
|
if($flist) { $tflist = " AND t.fid IN (0{$flist})"; $flist = " AND fid IN (0{$flist})";
|
} }
| } } else { $flist = $tflist = ''; }
// Retrieve a list of unviewable forums $unviewableforums = get_unviewable_forums();
if($unviewableforums && !is_super_admin($mybb->user['uid'])) { $flist .= " AND fid NOT IN ({$unviewableforums})"; $tflist .= " AND t.fid NOT IN ({$unviewableforums})";
$unviewableforums = str_replace("'", '', $unviewableforums); $unviewableforums = explode(',', $unviewableforums); }
|
else {
|
else {
|
$flist = $tflist = '';
| $unviewableforums = array();
|
}
// Fetch the Mod CP menu
| }
// Fetch the Mod CP menu
|
Zeile 87 | Zeile 104 |
---|
error($lang->error_noselected_reports); }
|
error($lang->error_noselected_reports); }
|
$mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode($mybb->input['reports'], "','"); $rids = "'0','{$rids}'";
| $sql = '1=1'; if(!$mybb->input['allbox']) { $mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode($mybb->input['reports'], "','"); $rids = "'0','{$rids}'";
$sql = "rid IN ({$rids})"; }
|
$plugins->run_hooks("modcp_do_reports");
|
$plugins->run_hooks("modcp_do_reports");
|
$db->update_query("reportedposts", array('reportstatus' => 1), "rid IN ({$rids}){$flist}");
| $db->update_query("reportedposts", array('reportstatus' => 1), "{$sql}{$flist}");
|
$cache->update_reportedposts();
|
$cache->update_reportedposts();
|
|
|
$page = intval($mybb->input['page']);
|
$page = intval($mybb->input['page']);
|
|
|
redirect("modcp.php?action=reports&page={$page}", $lang->redirect_reportsmarked); }
if($mybb->input['action'] == "reports") { add_breadcrumb($lang->mcp_nav_reported_posts, "modcp.php?action=reports");
|
redirect("modcp.php?action=reports&page={$page}", $lang->redirect_reportsmarked); }
if($mybb->input['action'] == "reports") { add_breadcrumb($lang->mcp_nav_reported_posts, "modcp.php?action=reports");
|
if(!$mybb->settings['threadsperpage']) {
| if(!$mybb->settings['threadsperpage']) {
|
$mybb->settings['threadsperpage'] = 20;
|
$mybb->settings['threadsperpage'] = 20;
|
}
| }
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
}
| }
|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "reportstatus ='0'"); $report_count = $db->fetch_field($query, "count");
|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "reportstatus ='0'"); $report_count = $db->fetch_field($query, "count");
|
|
|
$mybb->input['rid'] = intval($mybb->input['rid']);
|
$mybb->input['rid'] = intval($mybb->input['rid']);
|
|
|
if($mybb->input['rid']) { $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'");
| if($mybb->input['rid']) { $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'");
|
Zeile 138 | Zeile 161 |
---|
$postcount = intval($report_count); $pages = $postcount / $perpage; $pages = ceil($pages);
|
$postcount = intval($report_count); $pages = $postcount / $perpage; $pages = ceil($pages);
|
|
|
if($mybb->input['page'] == "last") { $page = $pages;
| if($mybb->input['page'] == "last") { $page = $pages;
|
Zeile 150 | Zeile 173 |
---|
}
if($page && $page > 0)
|
}
if($page && $page > 0)
|
{ $start = ($page-1) * $perpage; } else { $start = 0; $page = 1;
| { $start = ($page-1) * $perpage; } else { $start = 0; $page = 1;
|
} $upper = $start+$perpage;
| } $upper = $start+$perpage;
|
Zeile 171 | Zeile 194 |
---|
{ $forums[$forum['fid']] = $forum['name']; }
|
{ $forums[$forum['fid']] = $forum['name']; }
|
|
|
$plugins->run_hooks("modcp_reports_start");
$reports = '';
| $plugins->run_hooks("modcp_reports_start");
$reports = '';
|
Zeile 186 | Zeile 209 |
---|
ORDER BY r.dateline DESC LIMIT {$start}, {$perpage} ");
|
ORDER BY r.dateline DESC LIMIT {$start}, {$perpage} ");
|
while($report = $db->fetch_array($query))
| if(!$db->num_rows($query)) { eval("\$reports = \"".$templates->get("modcp_reports_noreports")."\";"); } else
|
{
|
{
|
$trow = alt_trow(); if(is_moderator($report['fid']))
| while($report = $db->fetch_array($query))
|
{
|
{
|
$trow = 'trow_shaded';
| $trow = alt_trow(); if(is_moderator($report['fid'])) { $trow = 'trow_shaded'; }
$report['postlink'] = get_post_link($report['pid'], $report['tid']); $report['threadlink'] = get_thread_link($report['tid']); $report['posterlink'] = get_profile_link($report['postuid']); $report['reporterlink'] = get_profile_link($report['uid']); $reportdate = my_date($mybb->settings['dateformat'], $report['dateline']); $reporttime = my_date($mybb->settings['timeformat'], $report['dateline']); $report['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($report['threadsubject']));
eval("\$reports .= \"".$templates->get("modcp_reports_report")."\";");
|
}
|
}
|
$report['postlink'] = get_post_link($report['pid'], $report['tid']); $report['threadlink'] = get_thread_link($report['tid']); $report['posterlink'] = get_profile_link($report['postuid']); $report['reporterlink'] = get_profile_link($report['uid']); $reportdate = my_date($mybb->settings['dateformat'], $report['dateline']); $reporttime = my_date($mybb->settings['timeformat'], $report['dateline']); $report['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($report['threadsubject'])); eval("\$reports .= \"".$templates->get("modcp_reports_report")."\";");
| |
}
|
}
|
if(!$reports) { eval("\$reports = \"".$templates->get("modcp_reports_noreports")."\";"); }
$plugins->run_hooks("modcp_reports");
| $plugins->run_hooks("modcp_reports_end");
|
eval("\$reportedposts = \"".$templates->get("modcp_reports")."\";"); output_page($reportedposts); }
| eval("\$reportedposts = \"".$templates->get("modcp_reports")."\";"); output_page($reportedposts); }
|
Zeile 220 | Zeile 249 |
---|
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
}
| }
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
}
| }
|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count"); $warnings = $db->fetch_field($query, "count");
if($mybb->input['rid'])
|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count"); $warnings = $db->fetch_field($query, "count");
if($mybb->input['rid'])
|
{
| {
|
$mybb->input['rid'] = intval($mybb->input['rid']); $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count");
| $mybb->input['rid'] = intval($mybb->input['rid']); $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count");
|
Zeile 245 | Zeile 274 |
---|
{ $page = intval($result / $perpage) + 1; }
|
{ $page = intval($result / $perpage) + 1; }
|
}
| }
|
$postcount = intval($warnings); $pages = $postcount / $perpage; $pages = ceil($pages);
| $postcount = intval($warnings); $pages = $postcount / $perpage; $pages = ceil($pages);
|
Zeile 256 | Zeile 285 |
---|
}
if($page > $pages || $page <= 0)
|
}
if($page > $pages || $page <= 0)
|
{ $page = 1; }
| { $page = 1; }
|
if($page) {
| if($page) {
|
Zeile 270 | Zeile 299 |
---|
$page = 1; } $upper = $start+$perpage;
|
$page = 1; } $upper = $start+$perpage;
|
|
|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=allreports"); if($postcount > $perpage) { eval("\$allreportspages = \"".$templates->get("modcp_reports_multipage")."\";");
|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=allreports"); if($postcount > $perpage) { eval("\$allreportspages = \"".$templates->get("modcp_reports_multipage")."\";");
|
}
$query = $db->simple_select("forums", "fid, name"); while($forum = $db->fetch_array($query)) { $forums[$forum['fid']] = $forum['name']; }
| }
|
$plugins->run_hooks("modcp_allreports_start");
|
$plugins->run_hooks("modcp_allreports_start");
|
$reports = '';
| |
$query = $db->query(" SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject FROM ".TABLE_PREFIX."reportedposts r
| $query = $db->query(" SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject FROM ".TABLE_PREFIX."reportedposts r
|
Zeile 294 | Zeile 316 |
---|
LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid) LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid) ORDER BY r.dateline DESC
|
LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid) LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid) ORDER BY r.dateline DESC
|
LIMIT $start, $perpage
| LIMIT {$start}, {$perpage}
|
");
|
");
|
while($report = $db->fetch_array($query))
| $allreports = ''; if(!$db->num_rows($query)) { eval("\$allreports = \"".$templates->get("modcp_reports_allnoreports")."\";"); } else
|
{
|
{
|
$report['postlink'] = get_post_link($report['pid'], $report['tid']); $report['threadlink'] = get_thread_link($report['tid']); $report['posterlink'] = get_profile_link($report['postuid']); $report['reporterlink'] = get_profile_link($report['uid']);
$reportdate = my_date($mybb->settings['dateformat'], $report['dateline']); $reporttime = my_date($mybb->settings['timeformat'], $report['dateline']);
if($report['reportstatus'] == 0) { $trow = "trow_shaded"; } else
| while($report = $db->fetch_array($query))
|
{ $trow = alt_trow();
|
{ $trow = alt_trow();
|
}
$report['postusername'] = build_profile_link($report['postusername'], $report['postuid']);
if($report['threadsubject']) { $report['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($report['threadsubject'])); $report['threadsubject'] = "<a href=\"".get_thread_link($report['tid'])."\" target=\"_blank\">{$report['threadsubject']}</a>"; } else { $report['threadsubject'] = $lang->na; }
| |
|
|
eval("\$allreports .= \"".$templates->get("modcp_reports_allreport")."\";"); }
| $report['threadlink'] = get_thread_link($report['tid']);
$report['posterlink'] = get_profile_link($report['postuid']); $report['postlink'] = get_post_link($report['pid'], $report['tid']); $report['postusername'] = build_profile_link($report['postusername'], $report['postuid']); $report['reporterlink'] = get_profile_link($report['uid']);
$reportdate = my_date($mybb->settings['dateformat'], $report['dateline']); $reporttime = my_date($mybb->settings['timeformat'], $report['dateline']);
if($report['reportstatus'] == 0) { $trow = "trow_shaded"; }
// No subject? Set it to N/A if($report['threadsubject'] == '') { $report['threadsubject'] = $lang->na; } else { // Only parse bad words and sanitize subject if there is one... $report['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($report['threadsubject'])); }
$report['threadsubject'] = "<a href=\"".get_thread_link($report['tid'])."\" target=\"_blank\">{$report['threadsubject']}</a>";
|
|
|
if(!$allreports) { eval("\$allreports = \"".$templates->get("modcp_reports_allnoreports")."\";");
| eval("\$allreports .= \"".$templates->get("modcp_reports_allreport")."\";"); }
|
}
|
}
|
$plugins->run_hooks("modcp_reports");
| $plugins->run_hooks("modcp_allreports_end");
|
eval("\$allreportedposts = \"".$templates->get("modcp_reports_allreports")."\";"); output_page($allreportedposts);
| eval("\$allreportedposts = \"".$templates->get("modcp_reports_allreports")."\";"); output_page($allreportedposts);
|
Zeile 385 | Zeile 412 |
---|
{ $order = "desc"; }
|
{ $order = "desc"; }
|
|
|
$plugins->run_hooks("modcp_modlogs_start");
|
$plugins->run_hooks("modcp_modlogs_start");
|
$query = $db->query("
| $query = $db->query("
|
SELECT COUNT(l.dateline) AS count FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid)
| SELECT COUNT(l.dateline) AS count FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid)
|
Zeile 482 | Zeile 509 |
---|
{ eval("\$results = \"".$templates->get("modcp_modlogs_noresults")."\";"); }
|
{ eval("\$results = \"".$templates->get("modcp_modlogs_noresults")."\";"); }
|
|
|
$plugins->run_hooks("modcp_modlogs_filter");
// Fetch filter options $sortbysel[$mybb->input['sortby']] = "selected=\"selected\""; $ordersel[$mybb->input['order']] = "selected=\"selected\"";
|
$plugins->run_hooks("modcp_modlogs_filter");
// Fetch filter options $sortbysel[$mybb->input['sortby']] = "selected=\"selected\""; $ordersel[$mybb->input['order']] = "selected=\"selected\"";
|
$query = $db->query("
| $query = $db->query("
|
SELECT DISTINCT l.uid, u.username FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (l.uid=u.uid)
| SELECT DISTINCT l.uid, u.username FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (l.uid=u.uid)
|
Zeile 501 | Zeile 528 |
---|
{ $user['username'] = $lang->na_deleted; }
|
{ $user['username'] = $lang->na_deleted; }
|
|
|
$selected = ''; if($mybb->input['uid'] == $user['uid']) { $selected = " selected=\"selected\""; } $user_options .= "<option value=\"{$user['uid']}\"{$selected}>".htmlspecialchars_uni($user['username'])."</option>\n";
|
$selected = ''; if($mybb->input['uid'] == $user['uid']) { $selected = " selected=\"selected\""; } $user_options .= "<option value=\"{$user['uid']}\"{$selected}>".htmlspecialchars_uni($user['username'])."</option>\n";
|
}
$forum_select = build_forum_jump("", $mybb->input['fid'], 1, '', 0, true, '', "fid");
| }
$forum_select = build_forum_jump("", $mybb->input['fid'], 1, '', 0, true, '', "fid");
|
eval("\$modlogs = \"".$templates->get("modcp_modlogs")."\";"); output_page($modlogs); }
|
eval("\$modlogs = \"".$templates->get("modcp_modlogs")."\";"); output_page($modlogs); }
|
|
|
if($mybb->input['action'] == "do_delete_announcement") { verify_post_check($mybb->input['my_post_key']);
| if($mybb->input['action'] == "do_delete_announcement") { verify_post_check($mybb->input['my_post_key']);
|
Zeile 525 | Zeile 552 |
---|
$announcement = $db->fetch_array($query);
if(!$announcement['aid'])
|
$announcement = $db->fetch_array($query);
if(!$announcement['aid'])
|
{
| {
|
error($lang->error_invalid_announcement);
|
error($lang->error_invalid_announcement);
|
} if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])))
| } if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
|
|
$plugins->run_hooks("modcp_do_delete_announcement");
$db->delete_query("announcements", "aid='{$aid}'");
| $plugins->run_hooks("modcp_do_delete_announcement");
$db->delete_query("announcements", "aid='{$aid}'");
|
Zeile 553 | Zeile 580 |
---|
{ error($lang->error_invalid_announcement); }
|
{ error($lang->error_invalid_announcement); }
|
if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid']))) { error_no_permission(); } $plugins->run_hooks("modcp_delete_announcement");
| if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums))) { error_no_permission(); }
$plugins->run_hooks("modcp_delete_announcement");
|
eval("\$announcements = \"".$templates->get("modcp_announcements_delete")."\";"); output_page($announcements); }
|
eval("\$announcements = \"".$templates->get("modcp_announcements_delete")."\";"); output_page($announcements); }
|
|
|
if($mybb->input['action'] == "do_new_announcement")
|
if($mybb->input['action'] == "do_new_announcement")
|
{ verify_post_check($mybb->input['my_post_key']);
$announcement_fid = intval($mybb->input['fid']); if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid))) { error_no_permission(); }
if(!trim($mybb->input['title'])) { $errors[] = $lang->error_missing_title; }
if(!trim($mybb->input['message'])) { $errors[] = $lang->error_missing_message; }
if(!trim($mybb->input['fid'])) { $errors[] = $lang->error_missing_forum; }
$startdate = @explode(" ", $mybb->input['starttime_time']); $startdate = @explode(":", $startdate[0]); $enddate = @explode(" ", $mybb->input['endtime_time']); $enddate = @explode(":", $enddate[0]);
if(stristr($mybb->input['starttime_time'], "pm"))
| { verify_post_check($mybb->input['my_post_key']);
$announcement_fid = intval($mybb->input['fid']); if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid)) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums))) { error_no_permission(); }
if(!trim($mybb->input['title'])) { $errors[] = $lang->error_missing_title; }
if(!trim($mybb->input['message'])) { $errors[] = $lang->error_missing_message; }
if(!trim($mybb->input['fid'])) { $errors[] = $lang->error_missing_forum; }
$startdate = @explode(" ", $mybb->input['starttime_time']); $startdate = @explode(":", $startdate[0]); $enddate = @explode(" ", $mybb->input['endtime_time']); $enddate = @explode(":", $enddate[0]);
if(stristr($mybb->input['starttime_time'], "pm"))
|
{ $startdate[0] = 12+$startdate[0]; if($startdate[0] >= 24) { $startdate[0] = "00";
|
{ $startdate[0] = 12+$startdate[0]; if($startdate[0] >= 24) { $startdate[0] = "00";
|
}
| }
|
}
if(stristr($mybb->input['endtime_time'], "pm"))
| }
if(stristr($mybb->input['endtime_time'], "pm"))
|
Zeile 611 | Zeile 639 |
---|
$enddate[0] = "00"; } }
|
$enddate[0] = "00"; } }
|
$months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
| $months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
$startdate = gmmktime(intval($startdate[0]), intval($startdate[1]), 0, (int)$mybb->input['starttime_month'], intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year']));
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
$startdate = gmmktime(intval($startdate[0]), intval($startdate[1]), 0, (int)$mybb->input['starttime_month'], intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year']));
|
if($startdate < 0 || $startdate == false)
| if(!checkdate(intval($mybb->input['starttime_month']), intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year'])) || $startdate < 0 || $startdate == false)
|
{ $errors[] = $lang->error_invalid_start_date; }
if($mybb->input['endtime_type'] == "2")
|
{ $errors[] = $lang->error_invalid_start_date; }
if($mybb->input['endtime_type'] == "2")
|
{
| {
|
$enddate = '0'; } else
| $enddate = '0'; } else
|
Zeile 636 | Zeile 663 |
---|
$mybb->input['endtime_month'] = 1; } $enddate = gmmktime(intval($enddate[0]), intval($enddate[1]), 0, (int)$mybb->input['endtime_month'], intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year']));
|
$mybb->input['endtime_month'] = 1; } $enddate = gmmktime(intval($enddate[0]), intval($enddate[1]), 0, (int)$mybb->input['endtime_month'], intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year']));
|
if($enddate < 0 || $enddate == false)
| if(!checkdate(intval($mybb->input['endtime_month']), intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year'])) || $enddate < 0 || $enddate == false)
|
{ $errors[] = $lang->error_invalid_end_date; }
|
{ $errors[] = $lang->error_invalid_end_date; }
|
elseif($enddate < $startdate)
| if($enddate <= $startdate)
|
{ $errors[] = $lang->error_end_before_start; } }
|
{ $errors[] = $lang->error_end_before_start; } }
|
|
|
$plugins->run_hooks("modcp_do_new_announcement_start");
if(!$errors) {
|
$plugins->run_hooks("modcp_do_new_announcement_start");
if(!$errors) {
|
| $mybb->input['title'] = utf8_handle_4byte_string($mybb->input['title']); $mybb->input['message'] = utf8_handle_4byte_string($mybb->input['message']);
|
$insert_announcement = array( 'fid' => $announcement_fid, 'uid' => $mybb->user['uid'],
| $insert_announcement = array( 'fid' => $announcement_fid, 'uid' => $mybb->user['uid'],
|
Zeile 663 | Zeile 692 |
---|
);
$aid = $db->insert_query("announcements", $insert_announcement);
|
);
$aid = $db->insert_query("announcements", $insert_announcement);
|
|
|
$plugins->run_hooks("modcp_do_new_announcement_end");
|
$plugins->run_hooks("modcp_do_new_announcement_end");
|
|
|
$cache->update_forumsdisplay(); redirect("modcp.php?action=announcements", $lang->redirect_add_announcement); }
| $cache->update_forumsdisplay(); redirect("modcp.php?action=announcements", $lang->redirect_add_announcement); }
|
Zeile 674 | Zeile 703 |
---|
$mybb->input['action'] = 'new_announcement'; } }
|
$mybb->input['action'] = 'new_announcement'; } }
|
|
|
if($mybb->input['action'] == "new_announcement") { add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
|
if($mybb->input['action'] == "new_announcement") { add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
|
|
|
$announcement_fid = intval($mybb->input['fid']);
|
$announcement_fid = intval($mybb->input['fid']);
|
if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid)))
| if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid)) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 691 | Zeile 720 |
---|
if(is_array($errors)) { $errors = inline_error($errors);
|
if(is_array($errors)) { $errors = inline_error($errors);
|
|
|
// Set $announcement to input stuff $announcement['subject'] = $mybb->input['title']; $announcement['message'] = $mybb->input['message']; $announcement['allowhtml'] = $mybb->input['allowhtml']; $announcement['allowmycode'] = $mybb->input['allowmycode']; $announcement['allowsmilies'] = $mybb->input['allowsmilies'];
|
// Set $announcement to input stuff $announcement['subject'] = $mybb->input['title']; $announcement['message'] = $mybb->input['message']; $announcement['allowhtml'] = $mybb->input['allowhtml']; $announcement['allowmycode'] = $mybb->input['allowmycode']; $announcement['allowsmilies'] = $mybb->input['allowsmilies'];
|
$months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
| $months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
|
|
|
if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1;
|
if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1;
|
}
| }
|
$startmonth = $mybb->input['starttime_month']; $startdateyear = htmlspecialchars_uni($mybb->input['starttime_year']); $startday = intval($mybb->input['starttime_day']);
|
$startmonth = $mybb->input['starttime_month']; $startdateyear = htmlspecialchars_uni($mybb->input['starttime_year']); $startday = intval($mybb->input['starttime_day']);
|
$starttime_time = htmlspecialchars($mybb->input['starttime_time']);
| $starttime_time = htmlspecialchars_uni($mybb->input['starttime_time']);
|
$endmonth = $mybb->input['endtime_month']; $enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = intval($mybb->input['endtime_day']);
|
$endmonth = $mybb->input['endtime_month']; $enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = intval($mybb->input['endtime_day']);
|
$endtime_time = htmlspecialchars($mybb->input['endtime_time']);
| $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
} else {
| } else {
|
Zeile 811 | Zeile 840 |
---|
else { $smilies_sel['no'] = ' checked="checked"';
|
else { $smilies_sel['no'] = ' checked="checked"';
|
}
| }
|
if($mybb->input['endtime_type'] == 2 || !isset($mybb->input['endtime_type'])) { $end_type_sel['infinite'] = ' checked="checked"'; } else
|
if($mybb->input['endtime_type'] == 2 || !isset($mybb->input['endtime_type'])) { $end_type_sel['infinite'] = ' checked="checked"'; } else
|
{
| {
|
$end_type_sel['finite'] = ' checked="checked"'; }
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
$end_type_sel['finite'] = ' checked="checked"'; }
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
|
|
$plugins->run_hooks("modcp_new_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";"); output_page($announcements); }
|
$plugins->run_hooks("modcp_new_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";"); output_page($announcements); }
|
|
|
if($mybb->input['action'] == "do_edit_announcement") { verify_post_check($mybb->input['my_post_key']);
| if($mybb->input['action'] == "do_edit_announcement") { verify_post_check($mybb->input['my_post_key']);
|
Zeile 848 | Zeile 877 |
---|
}
// Mod has permissions to edit this announcement
|
}
// Mod has permissions to edit this announcement
|
if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])))
| if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
|
{ error_no_permission();
|
{ error_no_permission();
|
}
| }
|
// Basic error checking if(!trim($mybb->input['title']))
| // Basic error checking if(!trim($mybb->input['title']))
|
Zeile 862 | Zeile 891 |
---|
if(!trim($mybb->input['message'])) { $errors[] = $lang->error_missing_message;
|
if(!trim($mybb->input['message'])) { $errors[] = $lang->error_missing_message;
|
}
| }
|
if(!trim($mybb->input['fid'])) { $errors[] = $lang->error_missing_forum;
| if(!trim($mybb->input['fid'])) { $errors[] = $lang->error_missing_forum;
|
Zeile 880 | Zeile 909 |
---|
if($startdate[0] >= 24) { $startdate[0] = "00";
|
if($startdate[0] >= 24) { $startdate[0] = "00";
|
}
| }
|
}
if(stristr($mybb->input['endtime_time'], "pm"))
| }
if(stristr($mybb->input['endtime_time'], "pm"))
|
Zeile 889 | Zeile 918 |
---|
if($enddate[0] >= 24) { $enddate[0] = "00";
|
if($enddate[0] >= 24) { $enddate[0] = "00";
|
} }
| } }
|
|
|
$months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
| $months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1;
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1;
|
}
| }
|
$startdate = gmmktime(intval($startdate[0]), intval($startdate[1]), 0, (int)$mybb->input['starttime_month'], intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year']));
|
$startdate = gmmktime(intval($startdate[0]), intval($startdate[1]), 0, (int)$mybb->input['starttime_month'], intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year']));
|
if($startdate < 0 || $startdate == false) {
| if(!checkdate(intval($mybb->input['starttime_month']), intval($mybb->input['starttime_day']), intval($mybb->input['starttime_year'])) || $startdate < 0 || $startdate == false) {
|
$errors[] = $lang->error_invalid_start_date;
|
$errors[] = $lang->error_invalid_start_date;
|
}
if($mybb->input['endtime_type'] == "2") { $enddate = '0'; } else { if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1; } $enddate = gmmktime(intval($enddate[0]), intval($enddate[1]), 0, (int)$mybb->input['endtime_month'], intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year'])); if($enddate < 0 || $enddate == false) {
| }
if($mybb->input['endtime_type'] == "2") { $enddate = '0'; } else { if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1; } $enddate = gmmktime(intval($enddate[0]), intval($enddate[1]), 0, (int)$mybb->input['endtime_month'], intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year'])); if(!checkdate(intval($mybb->input['endtime_month']), intval($mybb->input['endtime_day']), intval($mybb->input['endtime_year'])) || $enddate < 0 || $enddate == false) {
|
$errors[] = $lang->error_invalid_end_date;
|
$errors[] = $lang->error_invalid_end_date;
|
} elseif($enddate < $startdate)
| } elseif($enddate <= $startdate)
|
{ $errors[] = $lang->error_end_before_start; } }
|
{ $errors[] = $lang->error_end_before_start; } }
|
|
|
$plugins->run_hooks("modcp_do_edit_announcement_start");
// Proceed to update if no errors if(!$errors) {
|
$plugins->run_hooks("modcp_do_edit_announcement_start");
// Proceed to update if no errors if(!$errors) {
|
| $mybb->input['title'] = utf8_handle_4byte_string($mybb->input['title']); $mybb->input['message'] = utf8_handle_4byte_string($mybb->input['message']);
|
$update_announcement = array( 'uid' => $mybb->user['uid'], 'subject' => $db->escape_string($mybb->input['title']),
| $update_announcement = array( 'uid' => $mybb->user['uid'], 'subject' => $db->escape_string($mybb->input['title']),
|
Zeile 942 | Zeile 973 |
---|
);
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
|
);
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
|
|
|
$plugins->run_hooks("modcp_do_edit_announcement_end");
|
$plugins->run_hooks("modcp_do_edit_announcement_end");
|
|
|
$cache->update_forumsdisplay(); redirect("modcp.php?action=announcements", $lang->redirect_edit_announcement); }
| $cache->update_forumsdisplay(); redirect("modcp.php?action=announcements", $lang->redirect_edit_announcement); }
|
Zeile 958 | Zeile 989 |
---|
{ $announcement_fid = intval($mybb->input['fid']); $aid = intval($mybb->input['aid']);
|
{ $announcement_fid = intval($mybb->input['fid']); $aid = intval($mybb->input['aid']);
|
|
|
add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->edit_announcement, "modcp.php?action=edit_announcements&aid={$aid}");
| add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->edit_announcement, "modcp.php?action=edit_announcements&aid={$aid}");
|
Zeile 969 | Zeile 1000 |
---|
if(!$announcement['fid']) { error($lang->error_invalid_announcement);
|
if(!$announcement['fid']) { error($lang->error_invalid_announcement);
|
} if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid']))) {
| } if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'])) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums))) {
|
error_no_permission();
|
error_no_permission();
|
}
| }
if(!$announcement['startdate']) { // No start date? Make it now. $announcement['startdate'] = TIME_NOW; }
$makeshift_end = false; if(!$announcement['enddate']) { $makeshift_end = true; $makeshift_time = TIME_NOW; if($announcement['startdate']) { $makeshift_time = $announcement['startdate']; }
// No end date? Make it a year from now. $announcement['enddate'] = $makeshift_time + (60 * 60 * 24 * 366); }
|
// Deal with inline errors if(is_array($errors))
| // Deal with inline errors if(is_array($errors))
|
Zeile 986 | Zeile 1037 |
---|
$announcement['allowhtml'] = $mybb->input['allowhtml']; $announcement['allowmycode'] = $mybb->input['allowmycode']; $announcement['allowsmilies'] = $mybb->input['allowsmilies'];
|
$announcement['allowhtml'] = $mybb->input['allowhtml']; $announcement['allowmycode'] = $mybb->input['allowmycode']; $announcement['allowsmilies'] = $mybb->input['allowsmilies'];
|
$months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
| $months = array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
|
if(!in_array($mybb->input['starttime_month'], $months)) { $mybb->input['starttime_month'] = 1; }
|
|
|
if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1; }
|
if(!in_array($mybb->input['endtime_month'], $months)) { $mybb->input['endtime_month'] = 1; }
|
|
|
$startmonth = $mybb->input['starttime_month']; $startdateyear = htmlspecialchars_uni($mybb->input['starttime_year']); $startday = intval($mybb->input['starttime_day']);
|
$startmonth = $mybb->input['starttime_month']; $startdateyear = htmlspecialchars_uni($mybb->input['starttime_year']); $startday = intval($mybb->input['starttime_day']);
|
$starttime_time = htmlspecialchars($mybb->input['starttime_time']);
| $starttime_time = htmlspecialchars_uni($mybb->input['starttime_time']);
|
$endmonth = $mybb->input['endtime_month']; $enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = intval($mybb->input['endtime_day']);
|
$endmonth = $mybb->input['endtime_month']; $enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = intval($mybb->input['endtime_day']);
|
$endtime_time = htmlspecialchars($mybb->input['endtime_time']);
| $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
$errored = true; }
| $errored = true; }
|
Zeile 1077 | Zeile 1128 |
---|
$enddatemonth .= "<option value=\"11\" {$endmonthsel['11']}>{$lang->november}</option>\n"; $startdatemonth .= "<option value=\"12\" {$startmonthsel['12']}>{$lang->december}</option>\n"; $enddatemonth .= "<option value=\"12\" {$endmonthsel['12']}>{$lang->december}</option>\n";
|
$enddatemonth .= "<option value=\"11\" {$endmonthsel['11']}>{$lang->november}</option>\n"; $startdatemonth .= "<option value=\"12\" {$startmonthsel['12']}>{$lang->december}</option>\n"; $enddatemonth .= "<option value=\"12\" {$endmonthsel['12']}>{$lang->december}</option>\n";
|
|
|
$title = htmlspecialchars_uni($announcement['subject']); $message = htmlspecialchars_uni($announcement['message']);
$html_sel = $mycode_sel = $smilies_sel = array(); if($announcement['allowhtml'])
|
$title = htmlspecialchars_uni($announcement['subject']); $message = htmlspecialchars_uni($announcement['message']);
$html_sel = $mycode_sel = $smilies_sel = array(); if($announcement['allowhtml'])
|
{
| {
|
$html_sel['yes'] = ' checked="checked"'; } else
| $html_sel['yes'] = ' checked="checked"'; } else
|
Zeile 1098 | Zeile 1149 |
---|
else { $mycode_sel['no'] = ' checked="checked"';
|
else { $mycode_sel['no'] = ' checked="checked"';
|
}
| }
|
if($announcement['allowsmilies']) { $smilies_sel['yes'] = ' checked="checked"';
|
if($announcement['allowsmilies']) { $smilies_sel['yes'] = ' checked="checked"';
|
} else
| } else
|
{ $smilies_sel['no'] = ' checked="checked"'; }
|
{ $smilies_sel['no'] = ' checked="checked"'; }
|
if(($errored && $mybb->input['endtime_type'] == 2) || (!$errored && intval($announcement['enddate']) == 0))
| if(($errored && $mybb->input['endtime_type'] == 2) || (!$errored && intval($announcement['enddate']) == 0) || $makeshift_end == true)
|
{ $end_type_sel['infinite'] = ' checked="checked"'; }
| { $end_type_sel['infinite'] = ' checked="checked"'; }
|
Zeile 1121 | Zeile 1172 |
---|
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
|
|
$plugins->run_hooks("modcp_edit_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_edit")."\";");
| $plugins->run_hooks("modcp_edit_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_edit")."\";");
|
Zeile 1154 | Zeile 1205 |
---|
$trow = alt_trow(); if($announcement['startdate'] > TIME_NOW || ($announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0)) {
|
$trow = alt_trow(); if($announcement['startdate'] > TIME_NOW || ($announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0)) {
|
$icon = "<img src=\"images/minioff.gif\" alt=\"({$lang->expired})\" title=\"{$lang->expired_announcement}\" style=\"vertical-align: middle;\" /> ";
| $icon = "<img src=\"{$theme['imgdir']}/minioff.gif\" alt=\"({$lang->expired})\" title=\"{$lang->expired_announcement}\" style=\"vertical-align: middle;\" /> ";
|
} else {
|
} else {
|
$icon = "<img src=\"images/minion.gif\" alt=\"({$lang->active})\" title=\"{$lang->active_announcement}\" style=\"vertical-align: middle;\" /> ";
| $icon = "<img src=\"{$theme['imgdir']}/minion.gif\" alt=\"({$lang->active})\" title=\"{$lang->active_announcement}\" style=\"vertical-align: middle;\" /> ";
|
}
$subject = htmlspecialchars_uni($announcement['subject']);
| }
$subject = htmlspecialchars_uni($announcement['subject']);
|
Zeile 1177 | Zeile 1228 |
---|
{ // Moderator is not super, so don't show global annnouncemnets $announcements_global = '';
|
{ // Moderator is not super, so don't show global annnouncemnets $announcements_global = '';
|
}
fetch_forum_announcements();
| }
fetch_forum_announcements();
|
if(!$announcements_forum) { eval("\$announcements_forum = \"".$templates->get("modcp_no_announcements_forum")."\";"); }
|
if(!$announcements_forum) { eval("\$announcements_forum = \"".$templates->get("modcp_no_announcements_forum")."\";"); }
|
|
|
$plugins->run_hooks("modcp_announcements");
|
$plugins->run_hooks("modcp_announcements");
|
|
|
eval("\$announcements = \"".$templates->get("modcp_announcements")."\";"); output_page($announcements); }
| eval("\$announcements = \"".$templates->get("modcp_announcements")."\";"); output_page($announcements); }
|
Zeile 1199 | Zeile 1250 |
---|
// Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
// Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
|
|
$plugins->run_hooks("modcp_do_modqueue_start");
if(is_array($mybb->input['threads']))
| $plugins->run_hooks("modcp_do_modqueue_start");
if(is_array($mybb->input['threads']))
|
Zeile 1231 | Zeile 1282 |
---|
} log_moderator_action(array('tids' => $threads_to_delete), $lang->multi_delete_threads); }
|
} log_moderator_action(array('tids' => $threads_to_delete), $lang->multi_delete_threads); }
|
|
|
$plugins->run_hooks("modcp_do_modqueue_end");
|
$plugins->run_hooks("modcp_do_modqueue_end");
|
|
|
redirect("modcp.php?action=modqueue", $lang->redirect_threadsmoderated);
|
redirect("modcp.php?action=modqueue", $lang->redirect_threadsmoderated);
|
}
| }
|
else if(is_array($mybb->input['posts'])) { // Fetch posts
| else if(is_array($mybb->input['posts'])) { // Fetch posts
|
Zeile 1246 | Zeile 1297 |
---|
if($action == "approve") { $posts_to_approve[] = $post['pid'];
|
if($action == "approve") { $posts_to_approve[] = $post['pid'];
|
} else if($action == "delete") {
| } else if($action == "delete") {
|
$moderation->delete_post($post['pid']); } } if(is_array($posts_to_approve))
|
$moderation->delete_post($post['pid']); } } if(is_array($posts_to_approve))
|
{ $moderation->approve_posts($posts_to_approve);
| { $moderation->approve_posts($posts_to_approve);
|
} log_moderator_action(array('pids' => $posts_to_approve), $lang->multi_approve_posts);
|
} log_moderator_action(array('pids' => $posts_to_approve), $lang->multi_approve_posts);
|
|
|
$plugins->run_hooks("modcp_do_modqueue_end");
|
$plugins->run_hooks("modcp_do_modqueue_end");
|
|
|
redirect("modcp.php?action=modqueue&type=posts", $lang->redirect_postsmoderated); } else if(is_array($mybb->input['attachments']))
| redirect("modcp.php?action=modqueue&type=posts", $lang->redirect_postsmoderated); } else if(is_array($mybb->input['attachments']))
|
Zeile 1275 | Zeile 1326 |
---|
{ $action = $mybb->input['attachments'][$attachment['aid']]; if($action == "approve")
|
{ $action = $mybb->input['attachments'][$attachment['aid']]; if($action == "approve")
|
{
| {
|
$db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'"); } else if($action == "delete")
| $db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'"); } else if($action == "delete")
|
Zeile 1283 | Zeile 1334 |
---|
remove_attachment($attachment['pid'], '', $attachment['aid']); } }
|
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); } }
|
|
|
if($mybb->input['action'] == "modqueue") { if($mybb->input['type'] == "threads" || !$mybb->input['type'])
| if($mybb->input['action'] == "modqueue") { if($mybb->input['type'] == "threads" || !$mybb->input['type'])
|
Zeile 1312 | Zeile 1363 |
---|
if($mybb->input['page'] == "last") { $page = $pages;
|
if($mybb->input['page'] == "last") { $page = $pages;
|
}
if($page > $pages || $page <= 0) { $page = 1;
| }
if($page > $pages || $page <= 0) { $page = 1;
|
}
if($page)
| }
if($page)
|
Zeile 1329 | Zeile 1380 |
---|
$page = 1; }
|
$page = 1; }
|
$multipage = multipage($pages, $perpage, $page, "modcp.php?action=modqueue&type=threads");
| $multipage = multipage($unapproved_threads, $perpage, $page, "modcp.php?action=modqueue&type=threads");
|
$query = $db->query(" SELECT t.tid, t.dateline, t.fid, t.subject, p.message AS postmessage, u.username AS username, t.uid
| $query = $db->query(" SELECT t.tid, t.dateline, t.fid, t.subject, p.message AS postmessage, u.username AS username, t.uid
|
Zeile 1338 | Zeile 1389 |
---|
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid) WHERE t.visible='0' {$tflist} ORDER BY t.lastpost DESC
|
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid) WHERE t.visible='0' {$tflist} ORDER BY t.lastpost DESC
|
LIMIT {$start}, {$perpage} ");
| LIMIT {$start}, {$perpage} ");
|
while($thread = $db->fetch_array($query)) { $altbg = alt_trow();
| while($thread = $db->fetch_array($query)) { $altbg = alt_trow();
|
Zeile 1363 | Zeile 1414 |
---|
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");
|
$plugins->run_hooks("modcp_modqueue_threads_end");
|
|
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$threadqueue = \"".$templates->get("modcp_modqueue_threads")."\";"); output_page($threadqueue); } $type = 'threads'; }
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$threadqueue = \"".$templates->get("modcp_modqueue_threads")."\";"); output_page($threadqueue); } $type = 'threads'; }
|
|
|
if($mybb->input['type'] == "posts" || (!$mybb->input['type'] && !$threadqueue)) { $forum_cache = $cache->read("forums");
| if($mybb->input['type'] == "posts" || (!$mybb->input['type'] && !$threadqueue)) { $forum_cache = $cache->read("forums");
|
Zeile 1384 | Zeile 1435 |
---|
WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid "); $unapproved_posts = $db->fetch_field($query, "unapprovedposts");
|
WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid "); $unapproved_posts = $db->fetch_field($query, "unapprovedposts");
|
// Figure out if we need to display multiple pages. if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']); }
$perpage = $mybb->settings['postsperpage'];
| // Figure out if we need to display multiple pages. if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']); }
$perpage = $mybb->settings['postsperpage'];
|
$pages = $unapproved_posts / $perpage; $pages = ceil($pages);
| $pages = $unapproved_posts / $perpage; $pages = ceil($pages);
|
Zeile 1400 | Zeile 1451 |
---|
$page = $pages; }
|
$page = $pages; }
|
if($page > $pages || $page <= 0) { $page = 1; }
| if($page > $pages || $page <= 0) { $page = 1; }
|
if($page) { $start = ($page-1) * $perpage;
| if($page) { $start = ($page-1) * $perpage;
|
Zeile 1415 | Zeile 1466 |
---|
$page = 1; }
|
$page = 1; }
|
$multipage = multipage($pages, $perpage, $page, "modcp.php?action=modqueue&type=posts");
| $multipage = multipage($unapproved_posts, $perpage, $page, "modcp.php?action=modqueue&type=posts");
|
$query = $db->query(" SELECT p.pid, p.subject, p.message, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid, p.dateline
| $query = $db->query(" SELECT p.pid, p.subject, p.message, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid, p.dateline
|
Zeile 1441 | Zeile 1492 |
---|
$forum = "<strong>{$lang->meta_forum} <a href=\"{$post['forumlink']}\">{$forum_name}</a></strong><br />"; $post['message'] = nl2br(htmlspecialchars_uni($post['message'])); eval("\$posts .= \"".$templates->get("modcp_modqueue_posts_post")."\";");
|
$forum = "<strong>{$lang->meta_forum} <a href=\"{$post['forumlink']}\">{$forum_name}</a></strong><br />"; $post['message'] = nl2br(htmlspecialchars_uni($post['message'])); eval("\$posts .= \"".$templates->get("modcp_modqueue_posts_post")."\";");
|
}
| }
|
if(!$posts && $mybb->input['type'] == "posts") { eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
if($posts)
|
if(!$posts && $mybb->input['type'] == "posts") { eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
if($posts)
|
{
| {
|
add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
|
add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
|
|
|
$plugins->run_hooks("modcp_modqueue_posts_end");
|
$plugins->run_hooks("modcp_modqueue_posts_end");
|
|
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$postqueue = \"".$templates->get("modcp_modqueue_posts")."\";"); output_page($postqueue);
|
eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$postqueue = \"".$templates->get("modcp_modqueue_posts")."\";"); output_page($postqueue);
|
}
| }
|
}
if($mybb->input['type'] == "attachments" || (!$mybb->input['type'] && !$postqueue && !$threadqueue))
| }
if($mybb->input['type'] == "attachments" || (!$mybb->input['type'] && !$postqueue && !$threadqueue))
|
Zeile 1475 | Zeile 1526 |
---|
if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
}
| }
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_attachments / $perpage; $pages = ceil($pages);
if($mybb->input['page'] == "last")
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_attachments / $perpage; $pages = ceil($pages);
if($mybb->input['page'] == "last")
|
{
| {
|
$page = $pages; }
| $page = $pages; }
|
Zeile 1494 | Zeile 1545 |
---|
if($page) { $start = ($page-1) * $perpage;
|
if($page) { $start = ($page-1) * $perpage;
|
}
| }
|
else { $start = 0; $page = 1;
|
else { $start = 0; $page = 1;
|
}
$multipage = multipage($pages, $perpage, $page, "modcp.php?action=modqueue&type=attachments");
| }
$multipage = multipage($unapproved_attachments, $perpage, $page, "modcp.php?action=modqueue&type=attachments");
|
$query = $db->query(" SELECT a.*, p.subject AS postsubject, p.dateline, p.uid, u.username, t.tid, t.subject AS threadsubject FROM ".TABLE_PREFIX."attachments a
| $query = $db->query(" SELECT a.*, p.subject AS postsubject, p.dateline, p.uid, u.username, t.tid, t.subject AS threadsubject FROM ".TABLE_PREFIX."attachments a
|
Zeile 1514 | Zeile 1565 |
---|
LIMIT {$start}, {$perpage} "); while($attachment = $db->fetch_array($query))
|
LIMIT {$start}, {$perpage} "); while($attachment = $db->fetch_array($query))
|
{
| {
|
$altbg = alt_trow();
if(!$attachment['dateuploaded']) { $attachment['dateuploaded'] = $attachment['dateline']; }
|
$altbg = alt_trow();
if(!$attachment['dateuploaded']) { $attachment['dateuploaded'] = $attachment['dateline']; }
|
|
|
$attachdate = my_date($mybb->settings['dateformat'], $attachment['dateuploaded']); $attachtime = my_date($mybb->settings['timeformat'], $attachment['dateuploaded']);
| $attachdate = my_date($mybb->settings['dateformat'], $attachment['dateuploaded']); $attachtime = my_date($mybb->settings['timeformat'], $attachment['dateuploaded']);
|
Zeile 1533 | Zeile 1584 |
---|
$link = get_post_link($attachment['pid'], $attachment['tid']) . "#pid{$attachment['pid']}"; $thread_link = get_thread_link($attachment['tid']); $profile_link = build_profile_link($attachment['username'], $attachment['uid']);
|
$link = get_post_link($attachment['pid'], $attachment['tid']) . "#pid{$attachment['pid']}"; $thread_link = get_thread_link($attachment['tid']); $profile_link = build_profile_link($attachment['username'], $attachment['uid']);
|
|
|
eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";"); }
| eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";"); }
|
Zeile 1545 | Zeile 1596 |
---|
if($attachments) { add_breadcrumb($lang->mcp_nav_modqueue_attachments, "modcp.php?action=modqueue&type=attachments");
|
if($attachments) { add_breadcrumb($lang->mcp_nav_modqueue_attachments, "modcp.php?action=modqueue&type=attachments");
|
|
|
$plugins->run_hooks("modcp_modqueue_attachments_end");
|
$plugins->run_hooks("modcp_modqueue_attachments_end");
|
|
|
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);
|
Zeile 1558 | Zeile 1609 |
---|
if(!$threadqueue && !$postqueue && !$attachmentqueue) { add_breadcrumb($lang->mcp_nav_modqueue, "modcp.php?action=modqueue");
|
if(!$threadqueue && !$postqueue && !$attachmentqueue) { add_breadcrumb($lang->mcp_nav_modqueue, "modcp.php?action=modqueue");
|
|
|
$plugins->run_hooks("modcp_modqueue_end");
|
$plugins->run_hooks("modcp_modqueue_end");
|
|
|
eval("\$queue = \"".$templates->get("modcp_modqueue_empty")."\";"); output_page($queue); } }
|
eval("\$queue = \"".$templates->get("modcp_modqueue_empty")."\";"); output_page($queue); } }
|
|
|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
|
|
$user = get_user($mybb->input['uid']); if(!$user['uid']) { error($lang->invalid_user);
|
$user = get_user($mybb->input['uid']); if(!$user['uid']) { error($lang->invalid_user);
|
}
| }
|
// Check if the current user has permission to edit this user if(!modcp_can_manage_user($user['uid'])) { error_no_permission(); }
|
// Check if the current user has permission to edit this user if(!modcp_can_manage_user($user['uid'])) { error_no_permission(); }
|
|
|
$plugins->run_hooks("modcp_do_editprofile_start");
// Set up user handler.
| $plugins->run_hooks("modcp_do_editprofile_start");
// Set up user handler.
|
Zeile 1601 | Zeile 1652 |
---|
"msn" => $mybb->input['msn'], "signature" => $mybb->input['signature'], "usernotes" => $mybb->input['usernotes']
|
"msn" => $mybb->input['msn'], "signature" => $mybb->input['signature'], "usernotes" => $mybb->input['usernotes']
|
);
| );
|
$updated_user['birthday'] = array( "day" => $mybb->input['birthday_day'],
| $updated_user['birthday'] = array( "day" => $mybb->input['birthday_day'],
|
Zeile 1674 | Zeile 1725 |
---|
require_once MYBB_ROOT."inc/functions_warnings.php"; foreach($moderator_options as $option) {
|
require_once MYBB_ROOT."inc/functions_warnings.php"; foreach($moderator_options as $option) {
|
| $mybb->input[$option['time']] = intval($mybb->input[$option['time']]);
|
if(!$mybb->input[$option['action']]) { if($user[$option['update_field']] == 1)
| if(!$mybb->input[$option['action']]) { if($user[$option['update_field']] == 1)
|
Zeile 1689 | Zeile 1741 |
---|
if($mybb->input[$option['action']]) {
|
if($mybb->input[$option['action']]) {
|
if(intval($mybb->input[$option['time']]) == 0 && $mybb->input[$option['period']] != "never" && $user[$option['update_field']] != 1)
| if($mybb->input[$option['time']] == 0 && $mybb->input[$option['period']] != "never" && $user[$option['update_field']] != 1)
|
{ // User has selected a type of ban, but not entered a valid time frame $string = $option['action']."_error";
| { // User has selected a type of ban, but not entered a valid time frame $string = $option['action']."_error";
|
Zeile 1717 | Zeile 1769 |
---|
elseif(!$user[$option['update_field']]) { // New suspension for this user... bad user!
|
elseif(!$user[$option['update_field']]) { // New suspension for this user... bad user!
|
$extra_user_updates[$option['update_field']] = 1;
| $extra_user_updates[$option['update_field']] = 1;
|
if($suspend_length == "-1") { $extra_user_updates[$option['update_length']] = 0;
| if($suspend_length == "-1") { $extra_user_updates[$option['update_length']] = 0;
|
Zeile 1745 | Zeile 1797 |
---|
else { $plugins->run_hooks("modcp_do_editprofile_update");
|
else { $plugins->run_hooks("modcp_do_editprofile_update");
|
|
|
// Continue with the update if there is no errors $user_info = $userhandler->update_user(); $db->update_query("users", $extra_user_updates, "uid='{$user['uid']}'"); log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user);
|
// Continue with the update if there is no errors $user_info = $userhandler->update_user(); $db->update_query("users", $extra_user_updates, "uid='{$user['uid']}'"); log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user);
|
|
|
$plugins->run_hooks("modcp_do_editprofile_end");
|
$plugins->run_hooks("modcp_do_editprofile_end");
|
|
|
redirect("modcp.php?action=finduser", $lang->redirect_user_updated);
|
redirect("modcp.php?action=finduser", $lang->redirect_user_updated);
|
} }
| } }
|
}
if($mybb->input['action'] == "editprofile")
| }
if($mybb->input['action'] == "editprofile")
|
Zeile 1777 | Zeile 1829 |
---|
if($user['website'] == "" || $user['website'] == "http://") { $user['website'] = "http://";
|
if($user['website'] == "" || $user['website'] == "http://") { $user['website'] = "http://";
|
}
| }
|
if($user['icq'] != "0") {
| if($user['icq'] != "0") {
|
Zeile 1789 | Zeile 1841 |
---|
}
if(!$errors)
|
}
if(!$errors)
|
{
| {
|
$mybb->input = array_merge($user, $mybb->input); list($mybb->input['birthday_day'], $mybb->input['birthday_month'], $mybb->input['birthday_year']) = explode("-", $user['birthday']); }
| $mybb->input = array_merge($user, $mybb->input); list($mybb->input['birthday_day'], $mybb->input['birthday_month'], $mybb->input['birthday_year']) = explode("-", $user['birthday']); }
|
Zeile 1803 | Zeile 1855 |
---|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->input[$field]); }
|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->input[$field]); }
|
if($user['usertitle'] == "") { $query = $db->simple_select("usertitles", "*", "posts <='".$user['postnum']."'", array('order_by' => 'posts', 'order_dir' => 'DESC', 'limit' => 1)); $utitle = $db->fetch_array($query); $defaulttitle = $utitle['title']; } else { if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
$displaygroupfields = array( "usertitle" ); $display_group = usergroup_displaygroup($user['displaygroup']);
| // Custom user title, check to see if we have a default group title if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
$displaygroupfields = array('usertitle'); $display_group = usergroup_displaygroup($user['displaygroup']);
if(!empty($display_group['usertitle'])) {
|
$defaulttitle = $display_group['usertitle']; }
|
$defaulttitle = $display_group['usertitle']; }
|
| else { // Go for post count title if a group default isn't set $usertitles = $cache->read('usertitles');
foreach($usertitles as $title) { if($title['posts'] <= $mybb->user['postnum']) { $defaulttitle = $title['title']; } } }
|
if(empty($user['usertitle'])) { $lang->current_custom_usertitle = '';
|
if(empty($user['usertitle'])) { $lang->current_custom_usertitle = '';
|
}
| }
|
$bdaysel = ''; for($i = 1; $i <= 31; ++$i) { if($mybb->input['birthday_day'] == $i)
|
$bdaysel = ''; for($i = 1; $i <= 31; ++$i) { if($mybb->input['birthday_day'] == $i)
|
{
| {
|
$bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n"; } else
| $bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n"; } else
|
Zeile 1841 | Zeile 1901 |
---|
} } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
} } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
|
|
$plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
| $plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
|
Zeile 1863 | Zeile 1923 |
---|
if($errors) { $userfield = $mybb->input['profile_fields'][$field];
|
if($errors) { $userfield = $mybb->input['profile_fields'][$field];
|
}
| }
|
else { $userfield = $user_fields[$field];
| else { $userfield = $user_fields[$field];
|
Zeile 1879 | Zeile 1939 |
---|
$useropts = explode("\n", $userfield); } if(is_array($useropts))
|
$useropts = explode("\n", $userfield); } if(is_array($useropts))
|
{
| {
|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
} } $expoptions = explode("\n", $options);
| } } $expoptions = explode("\n", $options);
|
if(is_array($expoptions)) { foreach($expoptions as $key => $val)
| if(is_array($expoptions)) { foreach($expoptions as $key => $val)
|
Zeile 1908 | Zeile 1968 |
---|
} } elseif($type == "select")
|
} } elseif($type == "select")
|
{ $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);
| { $val = trim($val); $val = str_replace("\n", "\\n", $val);
|
Zeile 1931 | Zeile 1991 |
---|
} } elseif($type == "radio")
|
} } elseif($type == "radio")
|
{
| {
|
$expoptions = explode("\n", $options); if(is_array($expoptions)) {
| $expoptions = explode("\n", $options); if(is_array($expoptions)) {
|
Zeile 1949 | Zeile 2009 |
---|
elseif($type == "checkbox") { if($errors)
|
elseif($type == "checkbox") { if($errors)
|
{
| {
|
$useropts = $userfield; } else
| $useropts = $userfield; } else
|
Zeile 1961 | Zeile 2021 |
---|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
}
| }
|
} $expoptions = explode("\n", $options); if(is_array($expoptions))
| } $expoptions = explode("\n", $options); if(is_array($expoptions))
|
Zeile 2010 | Zeile 2070 |
---|
$seloptions = ""; } if($customfields)
|
$seloptions = ""; } if($customfields)
|
{
| {
|
eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";"); }
| eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";"); }
|
Zeile 2056 | Zeile 2116 |
---|
1 => array( "action" => "suspendsignature", // The input action for this option "option" => "suspendsignature", // The field in the database that this option relates to
|
1 => array( "action" => "suspendsignature", // The input action for this option "option" => "suspendsignature", // The field in the database that this option relates to
|
| "time" => "action_time", // The time we've entered
|
"length" => "suspendsigtime", // The length of suspension field in the database "select_option" => "action" // The name of the select box of this option ), 2 => array( "action" => "moderateposting", "option" => "moderateposts",
|
"length" => "suspendsigtime", // The length of suspension field in the database "select_option" => "action" // The name of the select box of this option ), 2 => array( "action" => "moderateposting", "option" => "moderateposts",
|
| "time" => "modpost_time",
|
"length" => "moderationtime", "select_option" => "modpost" ), 3 => array( "action" => "suspendposting", "option" => "suspendposting",
|
"length" => "moderationtime", "select_option" => "modpost" ), 3 => array( "action" => "suspendposting", "option" => "suspendposting",
|
| "time" => "suspost_time",
|
"length" => "suspensiontime", "select_option" => "suspost" )
| "length" => "suspensiontime", "select_option" => "suspost" )
|
Zeile 2083 | Zeile 2146 |
---|
foreach($moderator_options as $option) {
|
foreach($moderator_options as $option) {
|
| $mybb->input[$option['time']] = intval($mybb->input[$option['time']]);
|
// Display the suspension info, if this user has this option suspended if($user[$option['option']]) {
| // Display the suspension info, if this user has this option suspended if($user[$option['option']]) {
|
Zeile 2108 | Zeile 2172 |
---|
break; case "moderateposts": eval("\$moderateposts_info = \"".$templates->get("modcp_editprofile_suspensions_info")."\";");
|
break; case "moderateposts": eval("\$moderateposts_info = \"".$templates->get("modcp_editprofile_suspensions_info")."\";");
|
break;
| break;
|
case "suspendposting": eval("\$suspendposting_info = \"".$templates->get("modcp_editprofile_suspensions_info")."\";"); break;
|
case "suspendposting": eval("\$suspendposting_info = \"".$templates->get("modcp_editprofile_suspensions_info")."\";"); break;
|
} }
| } }
|
// Generate the boxes for this option $selection_options = ''; foreach($periods as $key => $value)
| // Generate the boxes for this option $selection_options = ''; foreach($periods as $key => $value)
|
Zeile 2148 | Zeile 2212 |
---|
}
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
}
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
|
|
$plugins->run_hooks("modcp_editprofile_end");
eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";");
| $plugins->run_hooks("modcp_editprofile_end");
eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";");
|
Zeile 2158 | Zeile 2222 |
---|
if($mybb->input['action'] == "finduser") { add_breadcrumb($lang->mcp_nav_users, "modcp.php?action=finduser");
|
if($mybb->input['action'] == "finduser") { add_breadcrumb($lang->mcp_nav_users, "modcp.php?action=finduser");
|
|
|
$perpage = intval($mybb->input['perpage']); if(!$perpage || $perpage <= 0) {
| $perpage = intval($mybb->input['perpage']); if(!$perpage || $perpage <= 0) {
|
Zeile 2236 | Zeile 2300 |
---|
$multipage = multipage($user_count, $perpage, $page, $page_url);
$usergroups_cache = $cache->read("usergroups");
|
$multipage = multipage($user_count, $perpage, $page, $page_url);
$usergroups_cache = $cache->read("usergroups");
|
|
|
$plugins->run_hooks("modcp_finduser_start");
// Fetch out results $query = $db->simple_select("users", "*", "1=1 {$where}", array("order_by" => $sortby, "order_dir" => $order, "limit" => $perpage, "limit_start" => $start)); while($user = $db->fetch_array($query))
|
$plugins->run_hooks("modcp_finduser_start");
// Fetch out results $query = $db->simple_select("users", "*", "1=1 {$where}", array("order_by" => $sortby, "order_dir" => $order, "limit" => $perpage, "limit_start" => $start)); while($user = $db->fetch_array($query))
|
{
| {
|
$alt_row = alt_trow(); $user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']); $user['postnum'] = my_number_format($user['postnum']);
| $alt_row = alt_trow(); $user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']); $user['postnum'] = my_number_format($user['postnum']);
|
Zeile 2252 | Zeile 2316 |
---|
$lasttime = my_date($mybb->settings['timeformat'], $user['lastvisit']); $usergroup = $usergroups_cache[$user['usergroup']]['title']; eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";");
|
$lasttime = my_date($mybb->settings['timeformat'], $user['lastvisit']); $usergroup = $usergroups_cache[$user['usergroup']]['title']; eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";");
|
}
| }
|
// No results? if(!$users) { eval("\$users = \"".$templates->get("modcp_finduser_noresults")."\";"); }
|
// No results? if(!$users) { eval("\$users = \"".$templates->get("modcp_finduser_noresults")."\";"); }
|
|
|
$plugins->run_hooks("modcp_finduser_end");
eval("\$finduser = \"".$templates->get("modcp_finduser")."\";");
| $plugins->run_hooks("modcp_finduser_end");
eval("\$finduser = \"".$templates->get("modcp_finduser")."\";");
|
Zeile 2304 | Zeile 2368 |
---|
{ $mod_user = get_user($mybb->input['search']['uid']); $mybb->input['search']['mod_username'] = htmlspecialchars_uni($mod_user['username']);
|
{ $mod_user = get_user($mybb->input['search']['uid']); $mybb->input['search']['mod_username'] = htmlspecialchars_uni($mod_user['username']);
|
}
| }
|
} if($mybb->input['filter']['reason']) {
|
} if($mybb->input['filter']['reason']) {
|
$search['reason'] = $db->escape_string($mybb->input['filter']['reason']);
| $search['reason'] = $db->escape_string_like($mybb->input['filter']['reason']);
|
$where_sql .= " AND (w.notes LIKE '%{$search['reason']}%' OR t.title LIKE '%{$search['reason']}%' OR w.title LIKE '%{$search['reason']}%')"; $mybb->input['filter']['reason'] = htmlspecialchars_uni($mybb->input['filter']['reason']); } $sortbysel = array(); switch($mybb->input['filter']['sortby'])
|
$where_sql .= " AND (w.notes LIKE '%{$search['reason']}%' OR t.title LIKE '%{$search['reason']}%' OR w.title LIKE '%{$search['reason']}%')"; $mybb->input['filter']['reason'] = htmlspecialchars_uni($mybb->input['filter']['reason']); } $sortbysel = array(); switch($mybb->input['filter']['sortby'])
|
{
| {
|
case "username": $sortby = "u.username"; $sortbysel['username'] = ' selected="selected"';
|
case "username": $sortby = "u.username"; $sortbysel['username'] = ' selected="selected"';
|
break;
| break;
|
case "expires": $sortby = "w.expires"; $sortbysel['expires'] = ' selected="selected"';
|
case "expires": $sortby = "w.expires"; $sortbysel['expires'] = ' selected="selected"';
|
break;
| break;
|
case "issuedby": $sortby = "i.username"; $sortbysel['issuedby'] = ' selected="selected"';
| case "issuedby": $sortby = "i.username"; $sortbysel['issuedby'] = ' selected="selected"';
|
Zeile 2339 | Zeile 2403 |
---|
$ordersel['desc'] = ' selected="selected"'; } else
|
$ordersel['desc'] = ' selected="selected"'; } else
|
{
| {
|
$ordersel['asc'] = ' selected="selected"'; }
|
$ordersel['asc'] = ' selected="selected"'; }
|
|
|
$plugins->run_hooks("modcp_warninglogs_start");
// Pagination stuff
| $plugins->run_hooks("modcp_warninglogs_start");
// Pagination stuff
|
Zeile 2439 | Zeile 2503 |
---|
{ eval("\$warning_list = \"".$templates->get("modcp_warninglogs_nologs")."\";"); }
|
{ eval("\$warning_list = \"".$templates->get("modcp_warninglogs_nologs")."\";"); }
|
$plugins->run_hooks("modcp_warninglogs_end");
| $plugins->run_hooks("modcp_warninglogs_end");
|
eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";"); output_page($warninglogs); }
|
eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";"); output_page($warninglogs); }
|
|
|
if($mybb->input['action'] == "ipsearch") { add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
if($mybb->input['action'] == "ipsearch") { add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
|
|
if($mybb->input['ipaddress']) { if(!is_array($groupscache))
|
if($mybb->input['ipaddress']) { if(!is_array($groupscache))
|
{
| {
|
$groupscache = $cache->read("usergroups"); }
| $groupscache = $cache->read("usergroups"); }
|
Zeile 2470 | Zeile 2534 |
---|
else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']);
|
else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']);
|
if(!is_array($ip_range))
| if($ip_range)
|
{
|
{
|
$post_ip_sql = "longipaddress='{$ip_range}'"; } else { $post_ip_sql = "longipaddress > '{$ip_range[0]}' AND longipaddress < '{$ip_range[1]}'";
| if(!is_array($ip_range)) { $post_ip_sql = "longipaddress='{$ip_range}'"; } else { $post_ip_sql = "longipaddress > '{$ip_range[0]}' AND longipaddress < '{$ip_range[1]}'"; }
|
} }
|
} }
|
|
|
$plugins->run_hooks("modcp_ipsearch_posts_start");
|
$plugins->run_hooks("modcp_ipsearch_posts_start");
|
$query = $db->query(" SELECT COUNT(pid) AS count FROM ".TABLE_PREFIX."posts WHERE {$post_ip_sql} "); $post_results = $db->fetch_field($query, "count");
| if($post_ip_sql) { $query = $db->query(" SELECT COUNT(pid) AS count FROM ".TABLE_PREFIX."posts WHERE {$post_ip_sql} ");
$post_results = $db->fetch_field($query, "count"); }
|
}
// Searching user IP addresses
| }
// Searching user IP addresses
|
Zeile 2499 | Zeile 2573 |
---|
else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']);
|
else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']);
|
if(!is_array($ip_range))
| if($ip_range)
|
{
|
{
|
$user_ip_sql = "longregip='{$ip_range}' OR longlastip='{$ip_range}'";
| if(!is_array($ip_range)) { $user_ip_sql = "longregip='{$ip_range}' OR longlastip='{$ip_range}'"; } else { $user_ip_sql = "(longregip > '{$ip_range[0]}' AND longregip < '{$ip_range[1]}') OR (longlastip > '{$ip_range[0]}' AND longlastip < '{$ip_range[1]}')"; }
|
}
|
}
|
else { $user_ip_sql = "(longregip > '{$ip_range[0]}' AND longregip < '{$ip_range[1]}') OR (longlastip > '{$ip_range[0]}' AND longlastip < '{$ip_range[1]}')"; } }
| }
|
$plugins->run_hooks("modcp_ipsearch_users_start");
|
$plugins->run_hooks("modcp_ipsearch_users_start");
|
$query = $db->query(" SELECT COUNT(uid) AS count FROM ".TABLE_PREFIX."users WHERE {$user_ip_sql} "); $user_results = $db->fetch_field($query, "count"); }
| if($user_ip_sql) { $query = $db->query(" SELECT COUNT(uid) AS count FROM ".TABLE_PREFIX."users WHERE {$user_ip_sql} ");
$user_results = $db->fetch_field($query, "count"); } }
|
$total_results = $post_results+$user_results;
|
$total_results = $post_results+$user_results;
|
| if(!$total_results) { $total_results = 1; }
|
// Now we have the result counts, paginate $perpage = intval($mybb->input['perpage']);
| // Now we have the result counts, paginate $perpage = intval($mybb->input['perpage']);
|
Zeile 2564 | Zeile 2653 |
---|
$multipage = multipage($total_results, $perpage, $page, $page_url);
$post_limit = $perpage;
|
$multipage = multipage($total_results, $perpage, $page, $page_url);
$post_limit = $perpage;
|
if($mybb->input['search_users'] && $start <= $user_results)
| if($mybb->input['search_users'] && $user_results && $start <= $user_results)
|
{ $query = $db->query(" SELECT username, uid, regip, lastip
| { $query = $db->query(" SELECT username, uid, regip, lastip
|
Zeile 2611 | Zeile 2700 |
---|
$post_start = 0; } }
|
$post_start = 0; } }
|
if($mybb->input['search_posts'] && (!$mybb->input['search_users'] || ($mybb->input['search_users'] && $post_limit > 0)))
| if($mybb->input['search_posts'] && $post_results && (!$mybb->input['search_users'] || ($mybb->input['search_users'] && $post_limit > 0)))
|
{ $ipaddresses = $tids = $uids = array(); $query = $db->query("
| { $ipaddresses = $tids = $uids = array(); $query = $db->query("
|
Zeile 2627 | Zeile 2716 |
---|
$uids[$ipaddress['uid']] = $ipaddress['pid']; $ipaddresses[$ipaddress['pid']] = $ipaddress; }
|
$uids[$ipaddress['uid']] = $ipaddress['pid']; $ipaddresses[$ipaddress['pid']] = $ipaddress; }
|
|
|
if(!empty($ipaddresses)) { $query = $db->simple_select("threads", "subject, tid", "tid IN(".implode(',', array_keys($tids)).")"); while($thread = $db->fetch_array($query))
|
if(!empty($ipaddresses)) { $query = $db->simple_select("threads", "subject, tid", "tid IN(".implode(',', array_keys($tids)).")"); while($thread = $db->fetch_array($query))
|
{
| {
|
$ipaddresses[$tids[$thread['tid']]]['threadsubject'] = $thread['subject']; } unset($tids);
|
$ipaddresses[$tids[$thread['tid']]]['threadsubject'] = $thread['subject']; } unset($tids);
|
|
|
$query = $db->simple_select("users", "username, uid", "uid IN(".implode(',', array_keys($uids)).")"); while($user = $db->fetch_array($query)) { $ipaddresses[$uids[$user['uid']]]['username'] = $user['username']; } unset($uids);
|
$query = $db->simple_select("users", "username, uid", "uid IN(".implode(',', array_keys($uids)).")"); while($user = $db->fetch_array($query)) { $ipaddresses[$uids[$user['uid']]]['username'] = $user['username']; } unset($uids);
|
|
|
foreach($ipaddresses as $ipaddress) { $ip = $ipaddress['ipaddress'];
| foreach($ipaddresses as $ipaddress) { $ip = $ipaddress['ipaddress'];
|
Zeile 2665 | Zeile 2754 |
---|
}
if($ipaddressvalue)
|
}
if($ipaddressvalue)
|
{
| {
|
$lang->ipsearch_results = $lang->sprintf($lang->ipsearch_results, $ipaddressvalue);
|
$lang->ipsearch_results = $lang->sprintf($lang->ipsearch_results, $ipaddressvalue);
|
}
| }
|
else
|
else
|
{
| {
|
$lang->ipsearch_results = $lang->ipsearch;
|
$lang->ipsearch_results = $lang->ipsearch;
|
} if(!strstr($mybb->input['ipaddress'], "*") && !strstr($mybb->input['ipaddress'], ":")) { $misc_info_link = "<div class=\"float_right\">(<a href=\"modcp.php?action=iplookup&ipaddress=".htmlspecialchars_uni($mybb->input['ipaddress'])."\" onclick=\"MyBB.popupWindow('{$mybb->settings['bburl']}/modcp.php?action=iplookup&ipaddress=".htmlspecialchars_uni($mybb->input['ipaddress'])."', 'iplookup', 500, 250); return false;\">{$lang->info_on_ip}</a>)</div>"; }
| }
if(!strstr($mybb->input['ipaddress'], "*") && !strstr($mybb->input['ipaddress'], ":")) { $misc_info_link = "<div class=\"float_right\">(<a href=\"modcp.php?action=iplookup&ipaddress=".htmlspecialchars_uni($mybb->input['ipaddress'])."\" onclick=\"MyBB.popupWindow('{$mybb->settings['bburl']}/modcp.php?action=iplookup&ipaddress=".urlencode($mybb->input['ipaddress'])."', 'iplookup', 500, 250); return false;\">{$lang->info_on_ip}</a>)</div>"; }
|
eval("\$ipsearch_results = \"".$templates->get("modcp_ipsearch_results")."\";"); }
| eval("\$ipsearch_results = \"".$templates->get("modcp_ipsearch_results")."\";"); }
|
Zeile 2695 | Zeile 2784 |
---|
{ $usersearchselect = "checked=\"checked\""; }
|
{ $usersearchselect = "checked=\"checked\""; }
|
|
|
$plugins->run_hooks("modcp_ipsearch_end");
eval("\$ipsearch = \"".$templates->get("modcp_ipsearch")."\";");
| $plugins->run_hooks("modcp_ipsearch_end");
eval("\$ipsearch = \"".$templates->get("modcp_ipsearch")."\";");
|
Zeile 2716 | Zeile 2805 |
---|
$ip_record = @geoip_record_by_name($mybb->input['ipaddress']); if($ip_record) {
|
$ip_record = @geoip_record_by_name($mybb->input['ipaddress']); if($ip_record) {
|
$ipaddress_location = htmlspecialchars_uni($ip_record['country_name']);
| $ipaddress_location = htmlspecialchars_uni(utf8_encode($ip_record['country_name']));
|
if($ip_record['city']) {
|
if($ip_record['city']) {
|
$ipaddress_location .= $lang->comma.htmlspecialchars_uni($ip_record['city']);
| $ipaddress_location .= $lang->comma.htmlspecialchars_uni(utf8_encode($ip_record['city']));
|
} } }
|
} } }
|
|
|
$ipaddress_host_name = htmlspecialchars_uni(@gethostbyaddr($mybb->input['ipaddress']));
|
$ipaddress_host_name = htmlspecialchars_uni(@gethostbyaddr($mybb->input['ipaddress']));
|
|
|
// gethostbyaddr returns the same ip on failure if($ipaddress_host_name == $mybb->input['ipaddress']) { $ipaddress_host_name = $lang->na; } }
|
// gethostbyaddr returns the same ip on failure if($ipaddress_host_name == $mybb->input['ipaddress']) { $ipaddress_host_name = $lang->na; } }
|
|
|
$plugins->run_hooks("modcp_iplookup_end");
|
$plugins->run_hooks("modcp_iplookup_end");
|
|
|
eval("\$iplookup = \"".$templates->get('modcp_ipsearch_misc_info')."\";"); output_page($iplookup); }
| eval("\$iplookup = \"".$templates->get('modcp_ipsearch_misc_info')."\";"); output_page($iplookup); }
|
Zeile 2746 | Zeile 2835 |
---|
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
}
| }
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last")
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->input['page'] != "last")
|
{
| {
|
$page = intval($mybb->input['page']); }
|
$page = intval($mybb->input['page']); }
|
|
|
$query = $db->simple_select("banned", "COUNT(uid) AS count"); $banned_count = $db->fetch_field($query, "count");
|
$query = $db->simple_select("banned", "COUNT(uid) AS count"); $banned_count = $db->fetch_field($query, "count");
|
|
|
$postcount = intval($banned_count); $pages = $postcount / $perpage; $pages = ceil($pages);
| $postcount = intval($banned_count); $pages = $postcount / $perpage; $pages = ceil($pages);
|
Zeile 2769 | Zeile 2858 |
---|
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
|
{
| {
|
$start = 0; $page = 1; }
| $start = 0; $page = 1; }
|
Zeile 2788 | Zeile 2877 |
---|
{ eval("\$allbannedpages = \"".$templates->get("modcp_banning_multipage")."\";"); }
|
{ eval("\$allbannedpages = \"".$templates->get("modcp_banning_multipage")."\";"); }
|
|
|
$plugins->run_hooks("modcp_banning_start");
$query = $db->query("
| $plugins->run_hooks("modcp_banning_start");
$query = $db->query("
|
Zeile 2861 | Zeile 2950 |
---|
if(!$bannedusers) { eval("\$bannedusers = \"".$templates->get("modcp_banning_nobanned")."\";");
|
if(!$bannedusers) { eval("\$bannedusers = \"".$templates->get("modcp_banning_nobanned")."\";");
|
}
| }
|
$plugins->run_hooks("modcp_banning");
| $plugins->run_hooks("modcp_banning");
|
Zeile 2880 | Zeile 2969 |
---|
if(!$ban['uid']) { error($lang->error_invalidban);
|
if(!$ban['uid']) { error($lang->error_invalidban);
|
}
| }
|
// Permission to edit this ban? if($mybb->user['uid'] != $ban['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission(); }
|
// Permission to edit this ban? if($mybb->user['uid'] != $ban['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission(); }
|
|
|
$plugins->run_hooks("modcp_liftban_start");
|
$plugins->run_hooks("modcp_liftban_start");
|
| $query = $db->simple_select("users", "username", "uid = '{$ban['uid']}'"); $username = $db->fetch_field($query, "username");
|
$updated_group = array( 'usergroup' => $ban['oldgroup'],
| $updated_group = array( 'usergroup' => $ban['oldgroup'],
|
Zeile 2900 | Zeile 2992 |
---|
$cache->update_banned(); $cache->update_moderators();
|
$cache->update_banned(); $cache->update_moderators();
|
| log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
|
$plugins->run_hooks("modcp_liftban_end");
redirect("modcp.php?action=banning", $lang->redirect_banlifted);
| $plugins->run_hooks("modcp_liftban_end");
redirect("modcp.php?action=banning", $lang->redirect_banlifted);
|
Zeile 2937 | Zeile 3030 |
---|
else { // Get the users info from their Username
|
else { // Get the users info from their Username
|
$query = $db->simple_select("users", "uid, usergroup, additionalgroups, displaygroup", "username = '".$db->escape_string($mybb->input['username'])."'", array('limit' => 1));
| $query = $db->simple_select("users", "uid, username, usergroup, additionalgroups, displaygroup", "username = '".$db->escape_string($mybb->input['username'])."'", array('limit' => 1));
|
$user = $db->fetch_array($query); if(!$user['uid']) {
| $user = $db->fetch_array($query); if(!$user['uid']) {
|
Zeile 2952 | Zeile 3045 |
---|
// Have permissions to ban this user? if(!modcp_can_manage_user($user['uid']))
|
// Have permissions to ban this user? if(!modcp_can_manage_user($user['uid']))
|
{
| {
|
$errors[] = $lang->error_cannotbanuser; }
// Check for an incoming reason if(!$mybb->input['banreason'])
|
$errors[] = $lang->error_cannotbanuser; }
// Check for an incoming reason if(!$mybb->input['banreason'])
|
{
| {
|
$errors[] = $lang->error_nobanreason; }
| $errors[] = $lang->error_nobanreason; }
|
Zeile 2974 | Zeile 3067 |
---|
{ $query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid"))
|
{ $query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid"))
|
{
| {
|
$errors[] = $lang->error_useralreadybanned; } }
|
$errors[] = $lang->error_useralreadybanned; } }
|
|
|
$plugins->run_hooks("modcp_do_banuser_start");
// Still no errors? Ban the user
| $plugins->run_hooks("modcp_do_banuser_start");
// Still no errors? Ban the user
|
Zeile 2986 | Zeile 3079 |
---|
{ // Ban the user if($mybb->input['liftafter'] == '---')
|
{ // Ban the user if($mybb->input['liftafter'] == '---')
|
{
| {
|
$lifted = 0; } else
| $lifted = 0; } else
|
Zeile 2996 | Zeile 3089 |
---|
if($mybb->input['uid']) {
|
if($mybb->input['uid']) {
|
| $username_select = $db->simple_select('users', 'username', "uid='" . (int)$mybb->input['uid'] . "'"); $user['username'] = $db->fetch_field($username_select, 'username');
|
$update_array = array(
|
$update_array = array(
|
'gid' => intval($mybb->input['usergroup']), 'admin' => intval($mybb->user['uid']), 'dateline' => TIME_NOW, 'bantime' => $db->escape_string($mybb->input['liftafter']), 'lifted' => $db->escape_string($lifted), 'reason' => $db->escape_string($mybb->input['banreason']) );
| 'gid' => intval($mybb->input['usergroup']), 'admin' => intval($mybb->user['uid']), 'dateline' => TIME_NOW, 'bantime' => $db->escape_string($mybb->input['liftafter']), 'lifted' => $db->escape_string($lifted), 'reason' => $db->escape_string($mybb->input['banreason']) );
|
$db->update_query('banned', $update_array, "uid='{$user['uid']}'"); } else
| $db->update_query('banned', $update_array, "uid='{$user['uid']}'"); } else
|
Zeile 3034 | Zeile 3129 |
---|
$db->update_query('users', $update_array, "uid = {$user['uid']}");
$cache->update_banned();
|
$db->update_query('users', $update_array, "uid = {$user['uid']}");
$cache->update_banned();
|
| // Log edit or add ban if($mybb->input['uid']) { log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user_ban); } else { log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->banned_user); }
|
$plugins->run_hooks("modcp_do_banuser_end");
if($mybb->input['uid'])
| $plugins->run_hooks("modcp_do_banuser_end");
if($mybb->input['uid'])
|
Zeile 3047 | Zeile 3152 |
---|
} } // Otherwise has errors, throw back to ban page
|
} } // Otherwise has errors, throw back to ban page
|
else {
| else {
|
$mybb->input['action'] = "banuser"; } }
| $mybb->input['action'] = "banuser"; } }
|
Zeile 3065 | Zeile 3170 |
---|
{ add_breadcrumb($lang->mcp_nav_editing_ban); }
|
{ add_breadcrumb($lang->mcp_nav_editing_ban); }
|
|
|
$plugins->run_hooks("modcp_banuser_start");
// If incoming user ID, we are editing a ban
| $plugins->run_hooks("modcp_banuser_start");
// If incoming user ID, we are editing a ban
|
Zeile 3088 | Zeile 3193 |
---|
eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";"); } }
|
eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";"); } }
|
|
|
// New ban! if(!$banuser_username) {
| // New ban! if(!$banuser_username) {
|
Zeile 3100 | Zeile 3205 |
---|
else { $username = htmlspecialchars_uni($mybb->input['username']);
|
else { $username = htmlspecialchars_uni($mybb->input['username']);
|
}
| }
|
eval("\$banuser_username = \"".$templates->get("modcp_banuser_addusername")."\";"); }
| eval("\$banuser_username = \"".$templates->get("modcp_banuser_addusername")."\";"); }
|
Zeile 3132 | Zeile 3237 |
---|
else { $liftlist .= ">{$title} ({$thatime})</option>\n";
|
else { $liftlist .= ">{$title} ({$thatime})</option>\n";
|
}
| }
|
}
|
}
|
|
|
$bangroups = ''; $query = $db->simple_select("usergroups", "gid, title", "isbannedgroup=1"); while($item = $db->fetch_array($query))
| $bangroups = ''; $query = $db->simple_select("usergroups", "gid, title", "isbannedgroup=1"); while($item = $db->fetch_array($query))
|
Zeile 3146 | Zeile 3251 |
---|
} $bangroups .= "<option value=\"{$item['gid']}\"{$selected}>".htmlspecialchars_uni($item['title'])."</option>\n"; }
|
} $bangroups .= "<option value=\"{$item['gid']}\"{$selected}>".htmlspecialchars_uni($item['title'])."</option>\n"; }
|
|
|
$lift_link = "<div class=\"float_right\"><a href=\"modcp.php?action=liftban&uid={$user['uid']}&my_post_key={$mybb->post_code}\">{$lang->lift_ban}</a></div>";
|
$lift_link = "<div class=\"float_right\"><a href=\"modcp.php?action=liftban&uid={$user['uid']}&my_post_key={$mybb->post_code}\">{$lang->lift_ban}</a></div>";
|
|
|
$plugins->run_hooks("modcp_banuser_end");
|
$plugins->run_hooks("modcp_banuser_end");
|
|
|
eval("\$banuser = \"".$templates->get("modcp_banuser")."\";"); output_page($banuser);
|
eval("\$banuser = \"".$templates->get("modcp_banuser")."\";"); output_page($banuser);
|
}
| }
|
if($mybb->input['action'] == "do_modnotes") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
if($mybb->input['action'] == "do_modnotes") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
|
|
$plugins->run_hooks("modcp_do_modnotes_start");
|
$plugins->run_hooks("modcp_do_modnotes_start");
|
|
|
// Update Moderator Notes cache $update_cache = array( "modmessage" => $mybb->input['modnotes'] ); $cache->update("modnotes", $update_cache);
|
// Update Moderator Notes cache $update_cache = array( "modmessage" => $mybb->input['modnotes'] ); $cache->update("modnotes", $update_cache);
|
|
|
$plugins->run_hooks("modcp_do_modnotes_end");
|
$plugins->run_hooks("modcp_do_modnotes_end");
|
|
|
redirect("modcp.php", $lang->redirect_modnotes); }
| redirect("modcp.php", $lang->redirect_modnotes); }
|
Zeile 3183 | Zeile 3288 |
---|
WHERE a.visible='0' {$tflist} "); $unapproved_attachments = $db->fetch_field($query, "unapprovedattachments");
|
WHERE a.visible='0' {$tflist} "); $unapproved_attachments = $db->fetch_field($query, "unapprovedattachments");
|
|
|
if($unapproved_attachments > 0) { $query = $db->query("
| if($unapproved_attachments > 0) { $query = $db->query("
|
Zeile 3207 | Zeile 3312 |
---|
else { $latest_attachment = "<span style=\"text-align: center;\">{$lang->lastpost_never}</span>";
|
else { $latest_attachment = "<span style=\"text-align: center;\">{$lang->lastpost_never}</span>";
|
}
| }
|
$query = $db->query(" SELECT COUNT(pid) AS unapprovedposts
| $query = $db->query(" SELECT COUNT(pid) AS unapprovedposts
|
Zeile 3271 | Zeile 3376 |
---|
else { $latest_thread = "<span style=\"text-align: center;\">{$lang->lastpost_never}</span>";
|
else { $latest_thread = "<span style=\"text-align: center;\">{$lang->lastpost_never}</span>";
|
| }
$where = ''; if($tflist) { $where = "WHERE (t.fid <> 0 {$tflist}) OR (!l.fid)";
|
}
$query = $db->query("
| }
$query = $db->query("
|
Zeile 3280 | Zeile 3391 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=l.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=l.fid) LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=l.pid)
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=l.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=l.fid) LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=l.pid)
|
| {$where}
|
ORDER BY l.dateline DESC LIMIT 5 ");
|
ORDER BY l.dateline DESC LIMIT 5 ");
|
|
|
while($logitem = $db->fetch_array($query)) { $information = '';
| while($logitem = $db->fetch_array($query)) { $information = '';
|
Zeile 3304 | Zeile 3417 |
---|
{ $information .= "<strong>{$lang->post}</strong> <a href=\"".get_post_link($logitem['pid'])."#pid{$logitem['pid']}\">".htmlspecialchars_uni($logitem['psubject'])."</a>"; }
|
{ $information .= "<strong>{$lang->post}</strong> <a href=\"".get_post_link($logitem['pid'])."#pid{$logitem['pid']}\">".htmlspecialchars_uni($logitem['psubject'])."</a>"; }
|
|
|
// Edited a user? if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) {
| // Edited a user? if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) {
|
Zeile 3402 | Zeile 3515 |
---|
$modnotes = $cache->read("modnotes"); $modnotes = htmlspecialchars_uni($modnotes['modmessage']);
|
$modnotes = $cache->read("modnotes"); $modnotes = htmlspecialchars_uni($modnotes['modmessage']);
|
|
|
$plugins->run_hooks("modcp_end");
eval("\$modcp = \"".$templates->get("modcp")."\";"); output_page($modcp); }
|
$plugins->run_hooks("modcp_end");
eval("\$modcp = \"".$templates->get("modcp")."\";"); output_page($modcp); }
|
| |
?>
| ?>
|