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 5761 2012-03-22 15:22:01Z 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,modcp_nobanned"; $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 39 | Zeile 40 |
---|
if($mybb->user['uid'] == 0 || $mybb->usergroup['canmodcp'] != 1) { error_no_permission();
|
if($mybb->user['uid'] == 0 || $mybb->usergroup['canmodcp'] != 1) { error_no_permission();
|
| }
if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1) { $mybb->settings['threadsperpage'] = 20; }
if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1) { $mybb->settings['postsperpage'] = 20;
|
}
$errors = '';
| }
$errors = '';
|
Zeile 50 | Zeile 61 |
---|
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)) {
| $children = get_child_list($forum['fid']); if(!empty($children)) {
|
Zeile 67 | Zeile 78 |
---|
else { $flist = $tflist = '';
|
else { $flist = $tflist = '';
|
}
| }
|
// Retrieve a list of unviewable forums $unviewableforums = get_unviewable_forums();
if($unviewableforums && !is_super_admin($mybb->user['uid']))
|
// 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})";
|
$flist .= " AND fid NOT IN ({$unviewableforums})"; $tflist .= " AND t.fid NOT IN ({$unviewableforums})";
|
| $unviewableforums = str_replace("'", '', $unviewableforums); $unviewableforums = explode(',', $unviewableforums); } else { $unviewableforums = array();
|
}
// Fetch the Mod CP menu eval("\$modcp_nav = \"".$templates->get("modcp_nav")."\";");
|
}
// Fetch the Mod CP menu eval("\$modcp_nav = \"".$templates->get("modcp_nav")."\";");
|
|
|
$plugins->run_hooks("modcp_start");
// Make navigation
| $plugins->run_hooks("modcp_start");
// Make navigation
|
Zeile 92 | Zeile 110 |
---|
verify_post_check($mybb->input['my_post_key']);
if(!is_array($mybb->input['reports']))
|
verify_post_check($mybb->input['my_post_key']);
if(!is_array($mybb->input['reports']))
|
{
| {
|
error($lang->error_noselected_reports); }
| error($lang->error_noselected_reports); }
|
Zeile 102 | Zeile 120 |
---|
$mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode($mybb->input['reports'], "','"); $rids = "'0','{$rids}'";
|
$mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode($mybb->input['reports'], "','"); $rids = "'0','{$rids}'";
|
|
|
$sql = "rid IN ({$rids})"; }
| $sql = "rid IN ({$rids})"; }
|
Zeile 110 | Zeile 128 |
---|
$db->update_query("reportedposts", array('reportstatus' => 1), "{$sql}{$flist}"); $cache->update_reportedposts();
|
$db->update_query("reportedposts", array('reportstatus' => 1), "{$sql}{$flist}"); $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']) { $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")
|
Zeile 136 | Zeile 154 |
---|
$report_count = $db->fetch_field($query, "count");
$mybb->input['rid'] = intval($mybb->input['rid']);
|
$report_count = $db->fetch_field($query, "count");
$mybb->input['rid'] = intval($mybb->input['rid']);
|
if($mybb->input['rid']) { $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count"); if(($result % $perpage) == 0) { $page = $result / $perpage; }
| if($mybb->input['rid']) { $query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count"); if(($result % $perpage) == 0) { $page = $result / $perpage; }
|
else { $page = intval($result / $perpage) + 1;
| else { $page = intval($result / $perpage) + 1;
|
Zeile 157 | Zeile 175 |
---|
if($mybb->input['page'] == "last") { $page = $pages;
|
if($mybb->input['page'] == "last") { $page = $pages;
|
}
| }
|
if($page > $pages || $page <= 0) {
| if($page > $pages || $page <= 0) {
|
Zeile 186 | Zeile 204 |
---|
{ $forums[$forum['fid']] = $forum['name']; }
|
{ $forums[$forum['fid']] = $forum['name']; }
|
|
|
$plugins->run_hooks("modcp_reports_start");
$reports = '';
|
$plugins->run_hooks("modcp_reports_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 LEFT JOIN ".TABLE_PREFIX."posts p ON (r.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid) LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid)
| $query = $db->query(" SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject FROM ".TABLE_PREFIX."reportedposts r LEFT JOIN ".TABLE_PREFIX."posts p ON (r.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid) LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid)
|
WHERE r.reportstatus='0' ORDER BY r.dateline DESC LIMIT {$start}, {$perpage} ");
|
WHERE r.reportstatus='0' ORDER BY r.dateline DESC LIMIT {$start}, {$perpage} ");
|
while($report = $db->fetch_array($query)) { $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")."\";"); } if(!$reports)
| if(!$db->num_rows($query))
|
{ eval("\$reports = \"".$templates->get("modcp_reports_noreports")."\";");
|
{ eval("\$reports = \"".$templates->get("modcp_reports_noreports")."\";");
|
}
$plugins->run_hooks("modcp_reports");
| } else { while($report = $db->fetch_array($query)) { $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']); if(!$report['postuid']) { $report['posterlink'] = $report['postlink']; $report['postusername'] = $lang->guest; }
$report['reporterlink'] = get_profile_link($report['uid']); if($report['uid'] > 0 && !$report['username']) { $report['reporterlink'] = $report['postlink']; $report['username'] = $lang->na_deleted; }
$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")."\";"); } }
$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 253 | Zeile 290 |
---|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count"); if(($result % $perpage) == 0)
|
$query = $db->simple_select("reportedposts", "COUNT(rid) AS count", "rid <= '".$mybb->input['rid']."'"); $result = $db->fetch_field($query, "count"); if(($result % $perpage) == 0)
|
{
| {
|
$page = $result / $perpage; } else { $page = intval($result / $perpage) + 1;
|
$page = $result / $perpage; } else { $page = intval($result / $perpage) + 1;
|
}
| }
|
} $postcount = intval($warnings); $pages = $postcount / $perpage; $pages = ceil($pages);
|
} $postcount = intval($warnings); $pages = $postcount / $perpage; $pages = ceil($pages);
|
|
|
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;
|
Zeile 278 | Zeile 315 |
---|
if($page) { $start = ($page-1) * $perpage;
|
if($page) { $start = ($page-1) * $perpage;
|
} else {
| } else {
|
$start = 0; $page = 1; } $upper = $start+$perpage;
|
$start = 0; $page = 1; } $upper = $start+$perpage;
|
|
|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=allreports"); if($postcount > $perpage)
|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=allreports"); if($postcount > $perpage)
|
{
| {
|
eval("\$allreportspages = \"".$templates->get("modcp_reports_multipage")."\";");
|
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 309 | Zeile 339 |
---|
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 "); while($report = $db->fetch_array($query)) { $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']);
| LIMIT {$start}, {$perpage} ");
|
|
|
$reportdate = my_date($mybb->settings['dateformat'], $report['dateline']); $reporttime = my_date($mybb->settings['timeformat'], $report['dateline']);
if($report['reportstatus'] == 0) { $trow = "trow_shaded"; } else
| $allreports = ''; if(!$db->num_rows($query)) { eval("\$allreports = \"".$templates->get("modcp_reports_allnoreports")."\";"); } 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['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']); if($report['uid'] > 0 && !$report['username']) { $report['reporterlink'] = $report['postlink']; $report['username'] = $lang->na_deleted; }
$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>";
|
$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")."\";"); }
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 400 | Zeile 441 |
---|
{ $order = "desc"; }
|
{ $order = "desc"; }
|
|
|
$plugins->run_hooks("modcp_modlogs_start");
$query = $db->query("
| $plugins->run_hooks("modcp_modlogs_start");
$query = $db->query("
|
Zeile 411 | Zeile 452 |
---|
WHERE 1=1 {$where}{$tflist} "); $rescount = $db->fetch_field($query, "count");
|
WHERE 1=1 {$where}{$tflist} "); $rescount = $db->fetch_field($query, "count");
|
|
|
// Figure out if we need to display multiple pages. if($mybb->input['page'] != "last")
|
// Figure out if we need to display multiple pages. if($mybb->input['page'] != "last")
|
{
| {
|
$page = intval($mybb->input['page']); }
$postcount = intval($rescount); $pages = $postcount / $perpage; $pages = ceil($pages);
|
$page = intval($mybb->input['page']); }
$postcount = intval($rescount); $pages = $postcount / $perpage; $pages = ceil($pages);
|
|
|
if($mybb->input['page'] == "last") { $page = $pages; }
if($page > $pages || $page <= 0)
|
if($mybb->input['page'] == "last") { $page = $pages; }
if($page > $pages || $page <= 0)
|
{
| {
|
$page = 1; }
if($page)
|
$page = 1; }
if($page)
|
{
| {
|
$start = ($page-1) * $perpage; } else
| $start = ($page-1) * $perpage; } else
|
Zeile 444 | Zeile 485 |
---|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=modlogs&perpage=$perpage&uid={$mybb->input['uid']}&fid={$mybb->input['fid']}&sortby={$mybb->input['sortby']}&order={$mybb->input['order']}"); if($postcount > $perpage)
|
$multipage = multipage($postcount, $perpage, $page, "modcp.php?action=modlogs&perpage=$perpage&uid={$mybb->input['uid']}&fid={$mybb->input['fid']}&sortby={$mybb->input['sortby']}&order={$mybb->input['order']}"); if($postcount > $perpage)
|
{
| {
|
eval("\$resultspages = \"".$templates->get("modcp_modlogs_multipage")."\";"); } $query = $db->query("
|
eval("\$resultspages = \"".$templates->get("modcp_modlogs_multipage")."\";"); } $query = $db->query("
|
SELECT l.*, u.username, u.usergroup, u.displaygroup, t.subject AS tsubject, f.name AS fname, p.subject AS psubject
| SELECT l.*, u.username, u.usergroup, u.displaygroup, t.subject AS tsubject, f.name AS fname
|
FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=l.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=l.fid)
|
FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid) 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 1=1 {$where}{$tflist} ORDER BY {$sortby} {$order} LIMIT {$start}, {$perpage}
| WHERE 1=1 {$where}{$tflist} ORDER BY {$sortby} {$order} LIMIT {$start}, {$perpage}
|
Zeile 469 | Zeile 509 |
---|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid']); if($logitem['tsubject']) {
|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid']); if($logitem['tsubject']) {
|
$information = "<strong>{$lang->thread}</strong> <a href=\"".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
| $information = "<strong>{$lang->thread}:</strong> <a href=\"".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
|
} if($logitem['fname']) { $information .= "<strong>{$lang->forum}</strong> <a href=\"".get_forum_link($logitem['fid'])."\" target=\"_blank\">{$logitem['fname']}</a><br />";
|
} if($logitem['fname']) { $information .= "<strong>{$lang->forum}</strong> <a href=\"".get_forum_link($logitem['fid'])."\" target=\"_blank\">{$logitem['fname']}</a><br />";
|
} if($logitem['psubject']) { $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']) { $data = unserialize($logitem['data']); if($data['uid']) {
| }
// Edited a user or managed announcement? if(!$logitem['tsubject'] || !$logitem['fname']) { $data = unserialize($logitem['data']); if($data['uid']) {
|
$information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid']));
|
$information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid']));
|
| } if($data['aid']) { $information = "<strong>{$lang->announcement}:</strong> <a href=\"".get_announcement_link($data['aid'])."\" target=\"_blank\">".htmlspecialchars_uni($data['subject'])."</a>";
|
} }
eval("\$results .= \"".$templates->get("modcp_modlogs_result")."\";");
|
} }
eval("\$results .= \"".$templates->get("modcp_modlogs_result")."\";");
|
}
| }
|
if(!$results) { eval("\$results = \"".$templates->get("modcp_modlogs_noresults")."\";"); }
|
if(!$results) { eval("\$results = \"".$templates->get("modcp_modlogs_noresults")."\";"); }
|
$plugins->run_hooks("modcp_modlogs_filter");
| $plugins->run_hooks("modcp_modlogs_filter");
|
// Fetch filter options $sortbysel[$mybb->input['sortby']] = "selected=\"selected\"";
| // Fetch filter options $sortbysel[$mybb->input['sortby']] = "selected=\"selected\"";
|
Zeile 516 | Zeile 556 |
---|
{ $user['username'] = $lang->na_deleted; }
|
{ $user['username'] = $lang->na_deleted; }
|
|
|
$selected = ''; if($mybb->input['uid'] == $user['uid']) {
| $selected = ''; if($mybb->input['uid'] == $user['uid']) {
|
Zeile 526 | Zeile 566 |
---|
}
$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); }
if($mybb->input['action'] == "do_delete_announcement")
|
eval("\$modlogs = \"".$templates->get("modcp_modlogs")."\";"); output_page($modlogs); }
if($mybb->input['action'] == "do_delete_announcement")
|
{ verify_post_check($mybb->input['my_post_key']);
$aid = intval($mybb->input['aid']); $query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'"); $announcement = $db->fetch_array($query);
if(!$announcement['aid']) { error($lang->error_invalid_announcement); } if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid']))) {
| { verify_post_check($mybb->input['my_post_key']);
$aid = intval($mybb->input['aid']); $query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'"); $announcement = $db->fetch_array($query);
if(!$announcement['aid']) { error($lang->error_invalid_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(); }
|
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}'");
|
| log_moderator_action(array("aid" => $announcement['aid'], "subject" => $announcement['subject']), $lang->announcement_deleted);
|
$cache->update_forumsdisplay();
redirect("modcp.php?action=announcements", $lang->redirect_delete_announcement);
| $cache->update_forumsdisplay();
redirect("modcp.php?action=announcements", $lang->redirect_delete_announcement);
|
Zeile 567 | Zeile 608 |
---|
if(!$announcement['aid']) { error($lang->error_invalid_announcement);
|
if(!$announcement['aid']) { 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; }
| { 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'])) {
| if(!trim($mybb->input['message'])) {
|
Zeile 627 | Zeile 668 |
---|
$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; }
| { $errors[] = $lang->error_invalid_start_date; }
|
Zeile 644 | Zeile 684 |
---|
if($mybb->input['endtime_type'] == "2") { $enddate = '0';
|
if($mybb->input['endtime_type'] == "2") { $enddate = '0';
|
} else { if(!in_array($mybb->input['endtime_month'], $months)) {
| } 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']));
|
$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)
|
Zeile 677 | Zeile 717 |
---|
'allowmycode' => $db->escape_string($mybb->input['allowmycode']), 'allowsmilies' => $db->escape_string($mybb->input['allowsmilies']), );
|
'allowmycode' => $db->escape_string($mybb->input['allowmycode']), 'allowsmilies' => $db->escape_string($mybb->input['allowsmilies']), );
|
| |
$aid = $db->insert_query("announcements", $insert_announcement);
|
$aid = $db->insert_query("announcements", $insert_announcement);
|
| log_moderator_action(array("aid" => $aid, "subject" => $db->escape_string($mybb->input['title'])), $lang->announcement_added);
|
$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 697 | Zeile 738 |
---|
add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
$announcement_fid = intval($mybb->input['fid']);
|
add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
$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(); }
// Deal with inline errors
|
{ error_no_permission(); }
// Deal with inline errors
|
if(is_array($errors))
| if(is_array($errors))
|
{ $errors = inline_error($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))
|
if(!in_array($mybb->input['starttime_month'], $months))
|
{
| {
|
$mybb->input['starttime_month'] = 1;
|
$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 812 | Zeile 853 |
---|
}
if($mybb->input['allowmycode'] || !isset($mybb->input['allowmycode']))
|
}
if($mybb->input['allowmycode'] || !isset($mybb->input['allowmycode']))
|
{
| {
|
$mycode_sel['yes'] = ' checked="checked"'; }
|
$mycode_sel['yes'] = ' checked="checked"'; }
|
else { $mycode_sel['no'] = ' checked="checked"'; }
| else { $mycode_sel['no'] = ' checked="checked"'; }
|
if($mybb->input['allowsmilies'] || !isset($mybb->input['allowsmilies'])) { $smilies_sel['yes'] = ' checked="checked"';
|
if($mybb->input['allowsmilies'] || !isset($mybb->input['allowsmilies'])) { $smilies_sel['yes'] = ' checked="checked"';
|
}
| }
|
else { $smilies_sel['no'] = ' checked="checked"'; }
if($mybb->input['endtime_type'] == 2 || !isset($mybb->input['endtime_type']))
|
else { $smilies_sel['no'] = ' checked="checked"'; }
if($mybb->input['endtime_type'] == 2 || !isset($mybb->input['endtime_type']))
|
{
| {
|
$end_type_sel['infinite'] = ' checked="checked"'; } else { $end_type_sel['finite'] = ' checked="checked"'; }
|
$end_type_sel['infinite'] = ' checked="checked"'; } else { $end_type_sel['finite'] = ' checked="checked"'; }
|
|
|
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
|
|
|
$plugins->run_hooks("modcp_new_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";");
| $plugins->run_hooks("modcp_new_announcement");
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";");
|
Zeile 864 | Zeile 905 |
---|
}
// 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(); }
|
Zeile 908 | Zeile 949 |
---|
} }
|
} }
|
$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
|
{
| {
|
if(!in_array($mybb->input['endtime_month'], $months))
|
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']));
|
$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)
| 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
| $plugins->run_hooks("modcp_do_edit_announcement_start");
// Proceed to update if no errors
|
Zeile 958 | Zeile 999 |
---|
);
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
|
);
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
|
| log_moderator_action(array("aid" => $announcement['aid'], "subject" => $db->escape_string($mybb->input['title'])), $lang->announcement_edited);
|
$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 986 | Zeile 1029 |
---|
{ 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(); }
|
Zeile 1022 | Zeile 1065 |
---|
$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 1130 | Zeile 1173 |
---|
if($announcement['allowmycode']) { $mycode_sel['yes'] = ' checked="checked"';
|
if($announcement['allowmycode']) { $mycode_sel['yes'] = ' checked="checked"';
|
} else
| } else
|
{ $mycode_sel['no'] = ' checked="checked"';
|
{ $mycode_sel['no'] = ' checked="checked"';
|
}
| }
|
if($announcement['allowsmilies']) { $smilies_sel['yes'] = ' checked="checked"'; }
|
if($announcement['allowsmilies']) { $smilies_sel['yes'] = ' checked="checked"'; }
|
else { $smilies_sel['no'] = ' checked="checked"'; }
| else { $smilies_sel['no'] = ' checked="checked"'; }
|
if(($errored && $mybb->input['endtime_type'] == 2) || (!$errored && intval($announcement['enddate']) == 0) || $makeshift_end == true) { $end_type_sel['infinite'] = ' checked="checked"';
| if(($errored && $mybb->input['endtime_type'] == 2) || (!$errored && intval($announcement['enddate']) == 0) || $makeshift_end == true) { $end_type_sel['infinite'] = ' checked="checked"';
|
Zeile 1153 | Zeile 1196 |
---|
{ $end_type_sel['finite'] = ' checked="checked"'; }
|
{ $end_type_sel['finite'] = ' checked="checked"'; }
|
|
|
// 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 1190 | Zeile 1233 |
---|
$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 1221 | Zeile 1264 |
---|
{ eval("\$announcements_forum = \"".$templates->get("modcp_no_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); }
|
|
|
if($mybb->input['action'] == "do_modqueue") { require_once MYBB_ROOT."inc/class_moderation.php";
| if($mybb->input['action'] == "do_modqueue") { require_once MYBB_ROOT."inc/class_moderation.php";
|
Zeile 1235 | Zeile 1278 |
---|
// 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 1267 | Zeile 1310 |
---|
} 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); } else if(is_array($mybb->input['posts']))
| redirect("modcp.php?action=modqueue", $lang->redirect_threadsmoderated); } else if(is_array($mybb->input['posts']))
|
Zeile 1293 | Zeile 1336 |
---|
$moderation->approve_posts($posts_to_approve); } log_moderator_action(array('pids' => $posts_to_approve), $lang->multi_approve_posts);
|
$moderation->approve_posts($posts_to_approve); } 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 1318 | Zeile 1361 |
---|
{ 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); } }
|
Zeile 1343 | Zeile 1386 |
---|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$pages = ceil($pages);
| $pages = ceil($pages);
|
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) { $start = ($page-1) * $perpage;
| if($page) { $start = ($page-1) * $perpage;
|
Zeile 1365 | Zeile 1408 |
---|
$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("
|
$query = $db->query("
|
SELECT t.tid, t.dateline, t.fid, t.subject, p.message AS postmessage, u.username AS username, t.uid
| SELECT t.tid, t.dateline, t.fid, t.subject, t.username AS threadusername, p.message AS postmessage, u.username AS username, t.uid
|
FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=t.firstpost) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid)
| FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."posts p ON (p.pid=t.firstpost) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=t.uid)
|
Zeile 1385 | Zeile 1428 |
---|
$forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date($mybb->settings['dateformat'], $thread['dateline']); $threadtime = my_date($mybb->settings['timeformat'], $thread['dateline']);
|
$forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date($mybb->settings['dateformat'], $thread['dateline']); $threadtime = my_date($mybb->settings['timeformat'], $thread['dateline']);
|
$profile_link = build_profile_link($thread['username'], $thread['uid']);
| if($thread['username'] == "") { if($thread['threadusername'] != "") { $profile_link = $thread['threadusername']; } else { $profile_link = $lang->guest; } } else { $profile_link = build_profile_link($thread['username'], $thread['uid']); }
|
$thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage'])); $forum = "<strong>{$lang->meta_forum} <a href=\"{$thread['forumlink']}\">{$forum_name}</a></strong>"; eval("\$threads .= \"".$templates->get("modcp_modqueue_threads_thread")."\";");
| $thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage'])); $forum = "<strong>{$lang->meta_forum} <a href=\"{$thread['forumlink']}\">{$forum_name}</a></strong>"; eval("\$threads .= \"".$templates->get("modcp_modqueue_threads_thread")."\";");
|
Zeile 1399 | Zeile 1458 |
---|
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);
| eval("\$mass_controls = \"".$templates->get("modcp_modqueue_masscontrols")."\";"); eval("\$threadqueue = \"".$templates->get("modcp_modqueue_threads")."\";"); output_page($threadqueue);
|
Zeile 1425 | Zeile 1484 |
---|
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_posts / $perpage;
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_posts / $perpage;
|
$pages = ceil($pages);
if($mybb->input['page'] == "last") { $page = $pages; }
if($page > $pages || $page <= 0) { $page = 1; }
if($page) { $start = ($page-1) * $perpage; } else { $start = 0; $page = 1; }
$multipage = multipage($pages, $perpage, $page, "modcp.php?action=modqueue&type=posts");
| $pages = ceil($pages);
if($mybb->input['page'] == "last") { $page = $pages; }
if($page > $pages || $page <= 0) { $page = 1; }
if($page) { $start = ($page-1) * $perpage; } else { $start = 0; $page = 1; }
$multipage = multipage($unapproved_posts, $perpage, $page, "modcp.php?action=modqueue&type=posts");
|
$query = $db->query("
|
$query = $db->query("
|
SELECT p.pid, p.subject, p.message, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid, p.dateline
| SELECT p.pid, p.subject, p.message, p.username AS postusername, t.subject AS threadsubject, t.tid, u.username, p.uid, t.fid, p.dateline
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
| FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
|
Zeile 1472 | Zeile 1531 |
---|
$forum_name = $forum_cache[$post['fid']]['name']; $postdate = my_date($mybb->settings['dateformat'], $post['dateline']); $posttime = my_date($mybb->settings['timeformat'], $post['dateline']);
|
$forum_name = $forum_cache[$post['fid']]['name']; $postdate = my_date($mybb->settings['dateformat'], $post['dateline']); $posttime = my_date($mybb->settings['timeformat'], $post['dateline']);
|
$profile_link = build_profile_link($post['username'], $post['uid']);
| if($post['username'] == "") { if($post['postusername'] != "") { $profile_link = $post['postusername']; } else { $profile_link = $lang->guest; } } else { $profile_link = build_profile_link($post['username'], $post['uid']); }
|
$thread = "<strong>{$lang->meta_thread} <a href=\"{$post['threadlink']}\">{$post['threadsubject']}</a></strong>"; $forum = "<strong>{$lang->meta_forum} <a href=\"{$post['forumlink']}\">{$forum_name}</a></strong><br />"; $post['message'] = nl2br(htmlspecialchars_uni($post['message']));
| $thread = "<strong>{$lang->meta_thread} <a href=\"{$post['threadlink']}\">{$post['threadsubject']}</a></strong>"; $forum = "<strong>{$lang->meta_forum} <a href=\"{$post['forumlink']}\">{$forum_name}</a></strong><br />"; $post['message'] = nl2br(htmlspecialchars_uni($post['message']));
|
Zeile 1483 | Zeile 1558 |
---|
{ eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
|
{ eval("\$posts = \"".$templates->get("modcp_modqueue_posts_empty")."\";"); }
|
|
|
if($posts) { add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
|
if($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);
|
Zeile 1537 | Zeile 1612 |
---|
$page = 1; }
|
$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
| $query = $db->query(" SELECT a.*, p.subject AS postsubject, p.dateline, p.uid, u.username, t.tid, t.subject AS threadsubject
|
Zeile 1556 | Zeile 1631 |
---|
if(!$attachment['dateuploaded']) { $attachment['dateuploaded'] = $attachment['dateline'];
|
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 1571 | Zeile 1646 |
---|
$profile_link = build_profile_link($attachment['username'], $attachment['uid']);
eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";");
|
$profile_link = build_profile_link($attachment['username'], $attachment['uid']);
eval("\$attachments .= \"".$templates->get("modcp_modqueue_attachments_attachment")."\";");
|
}
| }
|
if(!$attachments && $mybb->input['type'] == "attachments") {
| if(!$attachments && $mybb->input['type'] == "attachments") {
|
Zeile 1581 | Zeile 1656 |
---|
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 1594 | Zeile 1669 |
---|
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); }
|
Zeile 1610 | Zeile 1685 |
---|
$user = get_user($mybb->input['uid']); if(!$user['uid']) {
|
$user = get_user($mybb->input['uid']); if(!$user['uid']) {
|
error($lang->invalid_user);
| error($lang->error_nomember);
|
}
// Check if the current user has permission to edit this user
| }
// Check if the current user has permission to edit this user
|
Zeile 1618 | Zeile 1693 |
---|
{ error_no_permission(); }
|
{ 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 1710 | Zeile 1785 |
---|
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 1725 | Zeile 1801 |
---|
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 1753 | Zeile 1829 |
---|
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 1762 | Zeile 1838 |
---|
{ $extra_user_updates[$option['update_length']] = TIME_NOW + $suspend_length; }
|
{ $extra_user_updates[$option['update_length']] = TIME_NOW + $suspend_length; }
|
} } } }
| } } } }
|
// Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting if($extra_user_updates['moderateposts'] && $extra_user_updates['suspendposting'])
| // Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting if($extra_user_updates['moderateposts'] && $extra_user_updates['suspendposting'])
|
Zeile 1781 | Zeile 1857 |
---|
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); } }
|
Zeile 1801 | Zeile 1877 |
---|
$user = get_user($mybb->input['uid']); if(!$user['uid']) {
|
$user = get_user($mybb->input['uid']); if(!$user['uid']) {
|
error($lang->invalid_user);
| error($lang->error_nomember);
|
}
// Check if the current user has permission to edit this user
| }
// Check if the current user has permission to edit this user
|
Zeile 1840 | Zeile 1916 |
---|
$mybb->input[$field] = htmlspecialchars_uni($mybb->input[$field]); }
|
$mybb->input[$field] = htmlspecialchars_uni($mybb->input[$field]); }
|
if($user['usertitle'] == "")
| // Custom user title, check to see if we have a default group title if(!$user['displaygroup'])
|
{
|
{
|
$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'];
| $user['displaygroup'] = $user['usergroup'];
|
}
|
}
|
else
| $displaygroupfields = array('usertitle'); $display_group = usergroup_displaygroup($user['displaygroup']);
if(!empty($display_group['usertitle']))
|
{
|
{
|
if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
$displaygroupfields = array( "usertitle" ); $display_group = usergroup_displaygroup($user['displaygroup']); $defaulttitle = $display_group['usertitle']; } if(empty($user['usertitle']))
| $defaulttitle = htmlspecialchars_uni($display_group['usertitle']); } else
|
{
|
{
|
$lang->current_custom_usertitle = '';
| // 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 = '';
|
}
$bdaysel = '';
| }
$bdaysel = '';
|
Zeile 1870 | Zeile 1954 |
---|
if($mybb->input['birthday_day'] == $i) { $bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n";
|
if($mybb->input['birthday_day'] == $i) { $bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n";
|
}
| }
|
else { $bdaydaysel .= "<option value=\"$i\">$i</option>\n"; } } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
else { $bdaydaysel .= "<option value=\"$i\">$i</option>\n"; } } $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 1890 | Zeile 1974 |
---|
while($profilefield = $db->fetch_array($query)) { $profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
|
while($profilefield = $db->fetch_array($query)) { $profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
|
| $profilefield['name'] = htmlspecialchars_uni($profilefield['name']);
|
$profilefield['description'] = htmlspecialchars_uni($profilefield['description']); $thing = explode("\n", $profilefield['type'], "2"); $type = $thing[0];
| $profilefield['description'] = htmlspecialchars_uni($profilefield['description']); $thing = explode("\n", $profilefield['type'], "2"); $type = $thing[0];
|
Zeile 1905 | Zeile 1990 |
---|
$userfield = $user_fields[$field]; } if($type == "multiselect")
|
$userfield = $user_fields[$field]; } if($type == "multiselect")
|
{ if($errors) { $useropts = $userfield; } else { $useropts = explode("\n", $userfield); } if(is_array($useropts)) { foreach($useropts as $key => $val) { $seloptions[$val] = $val; } } $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) { $val = trim($val); $val = str_replace("\n", "\\n", $val);
$sel = ""; if($val == $seloptions[$val]) { $sel = " selected=\"selected\""; }
| { if($errors) { $useropts = $userfield; } else { $useropts = explode("\n", $userfield); } if(is_array($useropts)) { foreach($useropts as $key => $val) { $seloptions[$val] = $val; } } $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) { $val = trim($val); $val = str_replace("\n", "\\n", $val);
$sel = ""; if($val == $seloptions[$val]) { $sel = " selected=\"selected\""; }
|
$select .= "<option value=\"$val\"$sel>$val</option>\n"; } if(!$profilefield['length'])
| $select .= "<option value=\"$val\"$sel>$val</option>\n"; } if(!$profilefield['length'])
|
Zeile 1944 | Zeile 2029 |
---|
} } elseif($type == "select")
|
} } elseif($type == "select")
|
{ $expoptions = explode("\n", $options); if(is_array($expoptions))
| { $expoptions = explode("\n", $options); if(is_array($expoptions))
|
{ foreach($expoptions as $key => $val) {
| { foreach($expoptions as $key => $val) {
|
Zeile 1958 | Zeile 2043 |
---|
$sel = " selected=\"selected\""; } $select .= "<option value=\"$val\"$sel>$val</option>";
|
$sel = " selected=\"selected\""; } $select .= "<option value=\"$val\"$sel>$val</option>";
|
}
| }
|
if(!$profilefield['length']) { $profilefield['length'] = 1; } $code = "<select name=\"profile_fields[$field]\" size=\"{$profilefield['length']}\">$select</select>";
|
if(!$profilefield['length']) { $profilefield['length'] = 1; } $code = "<select name=\"profile_fields[$field]\" size=\"{$profilefield['length']}\">$select</select>";
|
} }
| } }
|
elseif($type == "radio") { $expoptions = explode("\n", $options);
| elseif($type == "radio") { $expoptions = explode("\n", $options);
|
Zeile 1983 | Zeile 2068 |
---|
} } elseif($type == "checkbox")
|
} } elseif($type == "checkbox")
|
{
| {
|
if($errors) { $useropts = $userfield;
| if($errors) { $useropts = $userfield;
|
Zeile 2014 | Zeile 2099 |
---|
} } elseif($type == "textarea")
|
} } elseif($type == "textarea")
|
{ $value = htmlspecialchars_uni($userfield);
| { $value = htmlspecialchars_uni($userfield);
|
$code = "<textarea name=\"profile_fields[$field]\" rows=\"6\" cols=\"30\" style=\"width: 95%\">$value</textarea>"; } else
| $code = "<textarea name=\"profile_fields[$field]\" rows=\"6\" cols=\"30\" style=\"width: 95%\">$value</textarea>"; } else
|
Zeile 2027 | Zeile 2112 |
---|
$maxlength = " maxlength=\"{$profilefield['maxlength']}\""; } $code = "<input type=\"text\" name=\"profile_fields[$field]\" class=\"textbox\" size=\"{$profilefield['length']}\"{$maxlength} value=\"$value\" />";
|
$maxlength = " maxlength=\"{$profilefield['maxlength']}\""; } $code = "<input type=\"text\" name=\"profile_fields[$field]\" class=\"textbox\" size=\"{$profilefield['length']}\"{$maxlength} value=\"$value\" />";
|
}
| }
|
if($profilefield['required'] == 1) { eval("\$requiredfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } else
|
if($profilefield['required'] == 1) { eval("\$requiredfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } else
|
{
| {
|
eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
| eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
|
Zeile 2046 | Zeile 2131 |
---|
$seloptions = ""; } if($customfields)
|
$seloptions = ""; } if($customfields)
|
{
| {
|
eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";"); }
| eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";"); }
|
Zeile 2064 | Zeile 2149 |
---|
else { $checked = 0;
|
else { $checked = 0;
|
}
| }
|
// Do we mark the moderate posts box? if($user['moderateposts'] || ($mybb->input['moderateposting'] && !empty($errors))) { $modpost_check = 1; $modpost_checked = "checked=\"checked\"";
|
// Do we mark the moderate posts box? if($user['moderateposts'] || ($mybb->input['moderateposting'] && !empty($errors))) { $modpost_check = 1; $modpost_checked = "checked=\"checked\"";
|
} else
| } else
|
{ $modpost_check = 0; }
| { $modpost_check = 0; }
|
Zeile 2084 | Zeile 2169 |
---|
$suspost_checked = "checked=\"checked\""; } else
|
$suspost_checked = "checked=\"checked\""; } else
|
{
| {
|
$suspost_check = 0; }
| $suspost_check = 0; }
|
Zeile 2092 | Zeile 2177 |
---|
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 2119 | Zeile 2207 |
---|
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 2184 | Zeile 2273 |
---|
}
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
}
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
$plugins->run_hooks("modcp_editprofile_end");
| $plugins->run_hooks("modcp_editprofile_end");
|
eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";"); output_page($edituser); }
|
eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";"); output_page($edituser); }
|
|
|
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 2272 | Zeile 2361 |
---|
$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
| $plugins->run_hooks("modcp_finduser_start");
// Fetch out results
|
Zeile 2286 | Zeile 2375 |
---|
$regtime = my_date($mybb->settings['timeformat'], $user['regdate']); $lastdate = my_date($mybb->settings['dateformat'], $user['lastvisit']); $lasttime = my_date($mybb->settings['timeformat'], $user['lastvisit']);
|
$regtime = my_date($mybb->settings['timeformat'], $user['regdate']); $lastdate = my_date($mybb->settings['dateformat'], $user['lastvisit']); $lasttime = my_date($mybb->settings['timeformat'], $user['lastvisit']);
|
$usergroup = $usergroups_cache[$user['usergroup']]['title'];
| $usergroup = htmlspecialchars_uni($usergroups_cache[$user['usergroup']]['title']);
|
eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";"); }
| eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";"); }
|
Zeile 2295 | Zeile 2384 |
---|
{ eval("\$users = \"".$templates->get("modcp_finduser_noresults")."\";"); }
|
{ 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 2344 | Zeile 2433 |
---|
} 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']); }
| $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']); }
|
Zeile 2366 | Zeile 2455 |
---|
default: // "dateline" $sortby = "w.dateline"; $sortbysel['dateline'] = ' selected="selected"';
|
default: // "dateline" $sortby = "w.dateline"; $sortbysel['dateline'] = ' selected="selected"';
|
}
| }
|
$order = $mybb->input['filter']['order']; $ordersel = array(); if($order != "asc")
| $order = $mybb->input['filter']['order']; $ordersel = array(); if($order != "asc")
|
Zeile 2377 | Zeile 2466 |
---|
else { $ordersel['asc'] = ' selected="selected"';
|
else { $ordersel['asc'] = ' selected="selected"';
|
}
| }
|
$plugins->run_hooks("modcp_warninglogs_start");
// Pagination stuff
| $plugins->run_hooks("modcp_warninglogs_start");
// Pagination stuff
|
Zeile 2411 | Zeile 2500 |
---|
{ $value = urlencode($value); $url .= "&filter[{$field}]={$value}";
|
{ $value = urlencode($value); $url .= "&filter[{$field}]={$value}";
|
}
| }
|
} $multipage = multipage($total_warnings, $per_page, $page, $url);
| } $multipage = multipage($total_warnings, $per_page, $page, $url);
|
Zeile 2433 | Zeile 2522 |
---|
"; $query = $db->query($sql);
|
"; $query = $db->query($sql);
|
|
|
$warning_list = ''; while($row = $db->fetch_array($query)) {
| $warning_list = ''; while($row = $db->fetch_array($query)) {
|
Zeile 2454 | Zeile 2543 |
---|
$expire_date = my_date($mybb->settings['dateformat'], $row['expires']).' '.my_date($mybb->settings['timeformat'], $row['expires']); } else
|
$expire_date = my_date($mybb->settings['dateformat'], $row['expires']).' '.my_date($mybb->settings['timeformat'], $row['expires']); } else
|
{
| {
|
$expire_date = $lang->never; } $title = $row['title']; if(empty($row['title']))
|
$expire_date = $lang->never; } $title = $row['title']; if(empty($row['title']))
|
{
| {
|
$title = $row['custom_title']; } $title = htmlspecialchars_uni($title); if($row['points'] >= 0)
|
$title = $row['custom_title']; } $title = htmlspecialchars_uni($title); if($row['points'] >= 0)
|
{
| {
|
$points = '+'.$row['points']; }
|
$points = '+'.$row['points']; }
|
|
|
eval("\$warning_list .= \"".$templates->get("modcp_warninglogs_warning")."\";");
|
eval("\$warning_list .= \"".$templates->get("modcp_warninglogs_warning")."\";");
|
}
| }
|
if(!$warning_list) { eval("\$warning_list = \"".$templates->get("modcp_warninglogs_nologs")."\";"); }
|
if(!$warning_list) { eval("\$warning_list = \"".$templates->get("modcp_warninglogs_nologs")."\";"); }
|
|
|
$plugins->run_hooks("modcp_warninglogs_end");
eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";");
| $plugins->run_hooks("modcp_warninglogs_end");
eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";");
|
Zeile 2497 | Zeile 2586 |
---|
// Searching post IP addresses if($mybb->input['search_posts'])
|
// Searching post IP addresses if($mybb->input['search_posts'])
|
{ // IPv6 IP if(strpos($mybb->input['ipaddress'], ":") !== false) {
| { // IPv6 IP if(strpos($mybb->input['ipaddress'], ":") !== false) {
|
$post_ip_sql = "ipaddress LIKE '".$db->escape_string(str_replace("*", "%", $mybb->input['ipaddress']))."'";
|
$post_ip_sql = "ipaddress LIKE '".$db->escape_string(str_replace("*", "%", $mybb->input['ipaddress']))."'";
|
} else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']); if(!is_array($ip_range))
| } else { $ip_range = fetch_longipv4_range($mybb->input['ipaddress']);
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} AND visible >= 0 ");
$post_results = $db->fetch_field($query, "count"); } }
|
// Searching user IP addresses if($mybb->input['search_users'])
| // Searching user IP addresses if($mybb->input['search_users'])
|
Zeile 2535 | Zeile 2634 |
---|
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}'"; } else { $user_ip_sql = "(longregip > '{$ip_range[0]}' AND longregip < '{$ip_range[1]}') OR (longlastip > '{$ip_range[0]}' AND longlastip < '{$ip_range[1]}')";
| 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]}')"; }
|
} }
|
} }
|
|
|
$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 2600 | Zeile 2714 |
---|
$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 2647 | Zeile 2761 |
---|
$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(" SELECT username AS postusername, uid, subject, pid, tid, ipaddress FROM ".TABLE_PREFIX."posts
|
{ $ipaddresses = $tids = $uids = array(); $query = $db->query(" SELECT username AS postusername, uid, subject, pid, tid, ipaddress FROM ".TABLE_PREFIX."posts
|
WHERE {$post_ip_sql}
| WHERE {$post_ip_sql} AND visible >= 0
|
ORDER BY dateline DESC LIMIT {$post_start}, {$post_limit} ");
| ORDER BY dateline DESC LIMIT {$post_start}, {$post_limit} ");
|
Zeile 2663 | Zeile 2777 |
---|
$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)).")");
| if(!empty($ipaddresses)) { $query = $db->simple_select("threads", "subject, tid", "tid IN(".implode(',', array_keys($tids)).")");
|
Zeile 2672 | Zeile 2786 |
---|
$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))
|
$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);
|
$ipaddresses[$uids[$user['uid']]]['username'] = $user['username']; } unset($uids);
|
|
|
foreach($ipaddresses as $ipaddress) { $ip = $ipaddress['ipaddress'];
| foreach($ipaddresses as $ipaddress) { $ip = $ipaddress['ipaddress'];
|
Zeile 2693 | Zeile 2807 |
---|
eval("\$results .= \"".$templates->get("modcp_ipsearch_result")."\";"); } }
|
eval("\$results .= \"".$templates->get("modcp_ipsearch_result")."\";"); } }
|
}
| }
|
if(!$results) { eval("\$results = \"".$templates->get("modcp_ipsearch_noresults")."\";");
|
if(!$results) { eval("\$results = \"".$templates->get("modcp_ipsearch_noresults")."\";");
|
}
| }
|
if($ipaddressvalue) {
| if($ipaddressvalue) {
|
Zeile 2707 | Zeile 2821 |
---|
else { $lang->ipsearch_results = $lang->ipsearch;
|
else { $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 2719 | Zeile 2833 |
---|
// Fetch filter options if(!$mybb->input['ipaddress'])
|
// Fetch filter options if(!$mybb->input['ipaddress'])
|
{
| {
|
$mybb->input['search_posts'] = 1; $mybb->input['search_users'] = 1; } if($mybb->input['search_posts'])
|
$mybb->input['search_posts'] = 1; $mybb->input['search_users'] = 1; } if($mybb->input['search_posts'])
|
{
| {
|
$postsearchselect = "checked=\"checked\""; } if($mybb->input['search_users']) { $usersearchselect = "checked=\"checked\""; }
|
$postsearchselect = "checked=\"checked\""; } if($mybb->input['search_users']) { $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 2752 | Zeile 2866 |
---|
$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 2789 | Zeile 2903 |
---|
if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']);
|
if($mybb->input['page'] != "last") { $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");
|
Zeile 2804 | Zeile 2918 |
---|
}
if($page > $pages || $page <= 0)
|
}
if($page > $pages || $page <= 0)
|
{ $page = 1; }
| { $page = 1; }
|
if($page)
|
if($page)
|
{
| {
|
$start = ($page-1) * $perpage;
|
$start = ($page-1) * $perpage;
|
}
| }
|
else
|
else
|
{
| {
|
$start = 0; $page = 1; }
| $start = 0; $page = 1; }
|
Zeile 2824 | Zeile 2938 |
---|
{ 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 2923 | Zeile 3037 |
---|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
|
|
$plugins->run_hooks("modcp_liftban_start");
$query = $db->simple_select("users", "username", "uid = '{$ban['uid']}'");
| $plugins->run_hooks("modcp_liftban_start");
$query = $db->simple_select("users", "username", "uid = '{$ban['uid']}'");
|
Zeile 2940 | Zeile 3054 |
---|
$cache->update_banned(); $cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
|
$cache->update_banned(); $cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
|
|
|
$plugins->run_hooks("modcp_liftban_end");
|
$plugins->run_hooks("modcp_liftban_end");
|
|
|
redirect("modcp.php?action=banning", $lang->redirect_banlifted); }
|
redirect("modcp.php?action=banning", $lang->redirect_banlifted); }
|
|
|
if($mybb->input['action'] == "do_banuser" && $mybb->request_method == "post") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
if($mybb->input['action'] == "do_banuser" && $mybb->request_method == "post") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
|
|
// Editing an existing ban if($mybb->input['uid']) {
| // Editing an existing ban if($mybb->input['uid']) {
|
Zeile 2965 | Zeile 3079 |
---|
if(!$user['uid']) { error($lang->error_invalidban);
|
if(!$user['uid']) { error($lang->error_invalidban);
|
}
| }
|
// Permission to edit this ban? if($mybb->user['uid'] != $user['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission();
|
// Permission to edit this ban? if($mybb->user['uid'] != $user['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission();
|
}
| }
|
} // Creating a new ban else
| } // Creating a new ban else
|
Zeile 2982 | Zeile 3096 |
---|
if(!$user['uid']) { $errors[] = $lang->invalid_username;
|
if(!$user['uid']) { $errors[] = $lang->invalid_username;
|
} }
| } }
|
if($user['uid'] == $mybb->user['uid']) { $errors[] = $lang->error_cannotbanself;
| if($user['uid'] == $mybb->user['uid']) { $errors[] = $lang->error_cannotbanself;
|
Zeile 2994 | Zeile 3108 |
---|
if(!modcp_can_manage_user($user['uid'])) { $errors[] = $lang->error_cannotbanuser;
|
if(!modcp_can_manage_user($user['uid'])) { $errors[] = $lang->error_cannotbanuser;
|
}
| }
|
// Check for an incoming reason if(!$mybb->input['banreason']) { $errors[] = $lang->error_nobanreason;
|
// Check for an incoming reason if(!$mybb->input['banreason']) { $errors[] = $lang->error_nobanreason;
|
}
| }
|
// Check banned group $query = $db->simple_select("usergroups", "gid", "isbannedgroup=1 AND gid='".intval($mybb->input['usergroup'])."'"); if(!$db->fetch_field($query, "gid"))
| // Check banned group $query = $db->simple_select("usergroups", "gid", "isbannedgroup=1 AND gid='".intval($mybb->input['usergroup'])."'"); if(!$db->fetch_field($query, "gid"))
|
Zeile 3011 | Zeile 3125 |
---|
// If this is a new ban, we check the user isn't already part of a banned group if(!$mybb->input['uid'] && $user['uid'])
|
// If this is a new ban, we check the user isn't already part of a banned group if(!$mybb->input['uid'] && $user['uid'])
|
{
| {
|
$query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid")) { $errors[] = $lang->error_useralreadybanned; } }
|
$query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid")) { $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 3028 | Zeile 3142 |
---|
if($mybb->input['liftafter'] == '---') { $lifted = 0;
|
if($mybb->input['liftafter'] == '---') { $lifted = 0;
|
}
| }
|
else
|
else
|
{
| {
|
$lifted = ban_date2timestamp($mybb->input['liftafter'], $user['dateline']);
|
$lifted = ban_date2timestamp($mybb->input['liftafter'], $user['dateline']);
|
}
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),
| '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']}'");
|
'reason' => $db->escape_string($mybb->input['banreason']) );
$db->update_query('banned', $update_array, "uid='{$user['uid']}'");
|
} else {
| } else {
|
$insert_array = array( 'uid' => $user['uid'], 'gid' => intval($mybb->input['usergroup']),
| $insert_array = array( 'uid' => $user['uid'], 'gid' => intval($mybb->input['usergroup']),
|
Zeile 3074 | Zeile 3190 |
---|
$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_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->banned_user);
| // 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']) { redirect("modcp.php?action=banning", $lang->redirect_banuser_updated);
|
$plugins->run_hooks("modcp_do_banuser_end");
if($mybb->input['uid']) { redirect("modcp.php?action=banning", $lang->redirect_banuser_updated);
|
}
| }
|
else { redirect("modcp.php?action=banning", $lang->redirect_banuser);
| else { redirect("modcp.php?action=banning", $lang->redirect_banuser);
|
Zeile 3093 | Zeile 3218 |
---|
$mybb->input['action'] = "banuser"; } }
|
$mybb->input['action'] = "banuser"; } }
|
|
|
if($mybb->input['action'] == "banuser") { add_breadcrumb($lang->mcp_nav_banning, "modcp.php?action=banning");
|
if($mybb->input['action'] == "banuser") { add_breadcrumb($lang->mcp_nav_banning, "modcp.php?action=banning");
|
if($mybb->input['uid']) {
| if($mybb->input['uid']) {
|
add_breadcrumb($lang->mcp_nav_ban_user); } else { add_breadcrumb($lang->mcp_nav_editing_ban); }
|
add_breadcrumb($lang->mcp_nav_ban_user); } else { 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 3129 | Zeile 3254 |
---|
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 3175 | Zeile 3300 |
---|
$liftlist .= ">{$title} ({$thatime})</option>\n"; } }
|
$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 3184 | Zeile 3309 |
---|
if($banned['gid'] == $item['gid']) { $selected = " selected=\"selected\"";
|
if($banned['gid'] == $item['gid']) { $selected = " selected=\"selected\"";
|
}
| }
|
$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 3292 | Zeile 3417 |
---|
$unapproved_threads = $db->fetch_field($query, "unapprovedthreads");
if($unapproved_threads > 0)
|
$unapproved_threads = $db->fetch_field($query, "unapprovedthreads");
if($unapproved_threads > 0)
|
{
| {
|
$query = $db->simple_select("threads", "tid, subject, uid, username, dateline", "visible=0 {$flist}", array('order_by' => 'dateline', 'order_dir' => 'DESC', 'limit' => 1)); $thread = $db->fetch_array($query); $thread['date'] = my_date($mybb->settings['dateformat'], $thread['dateline']);
| $query = $db->simple_select("threads", "tid, subject, uid, username, dateline", "visible=0 {$flist}", array('order_by' => 'dateline', 'order_dir' => 'DESC', 'limit' => 1)); $thread = $db->fetch_array($query); $thread['date'] = my_date($mybb->settings['dateformat'], $thread['dateline']);
|
Zeile 3321 | Zeile 3446 |
---|
}
$query = $db->query("
|
}
$query = $db->query("
|
SELECT l.*, u.username, u.usergroup, u.displaygroup, t.subject AS tsubject, f.name AS fname, p.subject AS psubject
| SELECT l.*, u.username, u.usergroup, u.displaygroup, t.subject AS tsubject, f.name AS fname
|
FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=l.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=l.fid)
|
FROM ".TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid) 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
| {$where} ORDER BY l.dateline DESC LIMIT 5
|
Zeile 3343 | Zeile 3467 |
---|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid']); if($logitem['tsubject']) {
|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid']); if($logitem['tsubject']) {
|
$information = "<strong>{$lang->thread}</strong> <a href=\"".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
| $information = "<strong>{$lang->thread}:</strong> <a href=\"".get_thread_link($logitem['tid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['tsubject'])."</a><br />";
|
} if($logitem['fname']) { $information .= "<strong>{$lang->forum}</strong> <a href=\"".get_forum_link($logitem['fid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['fname'])."</a><br />"; }
|
} if($logitem['fname']) { $information .= "<strong>{$lang->forum}</strong> <a href=\"".get_forum_link($logitem['fid'])."\" target=\"_blank\">".htmlspecialchars_uni($logitem['fname'])."</a><br />"; }
|
if($logitem['psubject']) { $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 or managed announcement? if(!$logitem['tsubject'] || !$logitem['fname'])
|
{ $data = unserialize($logitem['data']); if($data['uid'])
|
{ $data = unserialize($logitem['data']); if($data['uid'])
|
{
| {
|
$information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid']));
|
$information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid']));
|
| } if($data['aid']) { $information = "<strong>{$lang->announcement}:</strong> <a href=\"".get_announcement_link($data['aid'])."\" target=\"_blank\">".htmlspecialchars_uni($data['subject'])."</a>";
|
} }
| } }
|
Zeile 3446 | Zeile 3570 |
---|
if(!$bannedusers) {
|
if(!$bannedusers) {
|
eval("\$bannedusers = \"".$templates->get("modcp_banning_nobanned")."\";");
| eval("\$bannedusers = \"".$templates->get("modcp_nobanned")."\";");
|
}
|
}
|
|
|
$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")."\";");
| $plugins->run_hooks("modcp_end");
eval("\$modcp = \"".$templates->get("modcp")."\";");
|