Zeile 11 | Zeile 11 |
---|
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,modcp_reports_allreports,modcp_modlogs_multipage,modcp_announcements_delete,modcp_announcements_edit,modcp_awaitingmoderation";
| $templatelist = "modcp_reports,modcp_reports_report,modcp_reports_selectall,modcp_reports_multipage,modcp_reports_allreport,modcp_reports_allreports,modcp_modlogs_multipage,modcp_announcements_delete,modcp_announcements_edit,modcp_awaitingmoderation";
|
$templatelist .= ",modcp_reports_allnoreports,modcp_reports_noreports,modcp_banning,modcp_banning_ban,modcp_announcements_announcement_global,modcp_no_announcements_forum,modcp_modqueue_threads_thread,modcp_awaitingthreads,preview"; $templatelist .= ",modcp_banning_nobanned,modcp_modqueue_threads_empty,modcp_modqueue_masscontrols,modcp_modqueue_threads,modcp_modqueue_posts_post,modcp_modqueue_posts_empty,modcp_awaitingposts,modcp_nav_editprofile,modcp_nav_banning"; $templatelist .= ",modcp_nav,modcp_modlogs_noresults,modcp_modlogs_nologs,modcp,modcp_modqueue_posts,modcp_modqueue_attachments_attachment,modcp_modqueue_attachments_empty,modcp_modqueue_attachments,modcp_editprofile_suspensions_info";
| $templatelist .= ",modcp_reports_allnoreports,modcp_reports_noreports,modcp_banning,modcp_banning_ban,modcp_announcements_announcement_global,modcp_no_announcements_forum,modcp_modqueue_threads_thread,modcp_awaitingthreads,preview"; $templatelist .= ",modcp_banning_nobanned,modcp_modqueue_threads_empty,modcp_modqueue_masscontrols,modcp_modqueue_threads,modcp_modqueue_posts_post,modcp_modqueue_posts_empty,modcp_awaitingposts,modcp_nav_editprofile,modcp_nav_banning"; $templatelist .= ",modcp_nav,modcp_modlogs_noresults,modcp_modlogs_nologs,modcp,modcp_modqueue_posts,modcp_modqueue_attachments_attachment,modcp_modqueue_attachments_empty,modcp_modqueue_attachments,modcp_editprofile_suspensions_info";
|
Zeile 56 | Zeile 56 |
---|
$flist_queue_attach = $wflist_reports = $tflist_reports = $flist_reports = $tflist_modlog = $flist_modlog = $errors = ''; // SQL for fetching items only related to forums this user moderates $moderated_forums = array();
|
$flist_queue_attach = $wflist_reports = $tflist_reports = $flist_reports = $tflist_modlog = $flist_modlog = $errors = ''; // SQL for fetching items only related to forums this user moderates $moderated_forums = array();
|
| $numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0;
|
if($mybb->usergroup['issupermod'] != 1) {
|
if($mybb->usergroup['issupermod'] != 1) {
|
$query = $db->simple_select("moderators", "*", "(id='{$mybb->user['uid']}' AND isgroup = '0') OR (id='{$mybb->user['usergroup']}' AND isgroup = '1')");
$numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0;
| $query = $db->simple_select("moderators", "*", "(id='{$mybb->user['uid']}' AND isgroup = '0') OR (id IN ({$mybb->usergroup['all_usergroups']}) AND isgroup = '1')");
|
while($forum = $db->fetch_array($query)) {
|
while($forum = $db->fetch_array($query)) {
|
// For Announcements if($forum['canmanageannouncements'] == 1) { ++$numannouncements; }
| $moderated_forums[] = $forum['fid']; $children = get_child_list($forum['fid']); if(is_array($children)) { $moderated_forums = array_merge($moderated_forums, $children); } } $moderated_forums = array_unique($moderated_forums);
$numannouncements = $nummodqueuethreads = $nummodqueueposts = $nummodqueueattach = $numreportedposts = $nummodlogs = 0; foreach($moderated_forums as $moderated_forum) { // For Announcements if(is_moderator($moderated_forum, 'canmanageannouncements')) { ++$numannouncements; }
|
// For the Mod Queues
|
// For the Mod Queues
|
if($forum['canapproveunapprovethreads'] == 1)
| if(is_moderator($moderated_forum, 'canapproveunapprovethreads'))
|
{
|
{
|
$flist_queue_threads .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_threads .= ",'".implode("','", $children)."'"; }
| $flist_queue_threads .= ",'{$moderated_forum}'";
|
++$nummodqueuethreads; }
|
++$nummodqueuethreads; }
|
if($forum['canapproveunapproveposts'] == 1) { $flist_queue_posts .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_posts .= ",'".implode("','", $children)."'"; } ++$nummodqueueposts; }
if($forum['canapproveunapproveattachs'] == 1)
| if(is_moderator($moderated_forum, 'canapproveunapproveposts')) { $flist_queue_posts .= ",'{$moderated_forum}'"; ++$nummodqueueposts; }
if(is_moderator($moderated_forum, 'canapproveunapproveattachs'))
|
{
|
{
|
$flist_queue_attach .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_queue_attach .= ",'".implode("','", $children)."'"; }
| $flist_queue_attach .= ",'{$moderated_forum}'";
|
++$nummodqueueattach; }
// For Reported posts
|
++$nummodqueueattach; }
// For Reported posts
|
if($forum['canmanagereportedposts'] == 1)
| if(is_moderator($moderated_forum, 'canmanagereportedposts'))
|
{
|
{
|
$flist_reports .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_reports .= ",'".implode("','", $children)."'"; }
| $flist_reports .= ",'{$moderated_forum}'";
|
++$numreportedposts; }
// For the Mod Log
|
++$numreportedposts; }
// For the Mod Log
|
if($forum['canviewmodlog'] == 1)
| if(is_moderator($moderated_forum, 'canviewmodlog'))
|
{
|
{
|
$flist_modlog .= ",'{$forum['fid']}'";
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist_modlog .= ",'".implode("','", $children)."'"; }
| $flist_modlog .= ",'{$moderated_forum}'";
|
++$nummodlogs;
|
++$nummodlogs;
|
}
$flist .= ",'{$forum['fid']}'";
| }
|
|
|
$children = get_child_list($forum['fid']); if(!empty($children)) { $flist .= ",'".implode("','", $children)."'"; } $moderated_forums[] = $forum['fid'];
| $flist .= ",'{$moderated_forum}'";
|
} if($flist_queue_threads) {
| } if($flist_queue_threads) {
|
Zeile 232 | Zeile 206 |
---|
if(($numreportedposts > 0 || $mybb->usergroup['issupermod'] == 1) && $mybb->usergroup['canmanagereportedcontent'] == 1) { eval("\$nav_reportcenter = \"".$templates->get("modcp_nav_reportcenter")."\";");
|
if(($numreportedposts > 0 || $mybb->usergroup['issupermod'] == 1) && $mybb->usergroup['canmanagereportedcontent'] == 1) { eval("\$nav_reportcenter = \"".$templates->get("modcp_nav_reportcenter")."\";");
|
}
| }
|
if(($nummodlogs > 0 || $mybb->usergroup['issupermod'] == 1) && $mybb->usergroup['canviewmodlogs'] == 1)
|
if(($nummodlogs > 0 || $mybb->usergroup['issupermod'] == 1) && $mybb->usergroup['canviewmodlogs'] == 1)
|
{
| {
|
eval("\$nav_modlogs = \"".$templates->get("modcp_nav_modlogs")."\";"); }
if($mybb->usergroup['caneditprofiles'] == 1) { eval("\$nav_editprofile = \"".$templates->get("modcp_nav_editprofile")."\";");
|
eval("\$nav_modlogs = \"".$templates->get("modcp_nav_modlogs")."\";"); }
if($mybb->usergroup['caneditprofiles'] == 1) { eval("\$nav_editprofile = \"".$templates->get("modcp_nav_editprofile")."\";");
|
}
| }
|
if($mybb->usergroup['canbanusers'] == 1)
|
if($mybb->usergroup['canbanusers'] == 1)
|
{
| {
|
eval("\$nav_banning = \"".$templates->get("modcp_nav_banning")."\";"); }
if($mybb->usergroup['canviewwarnlogs'] == 1) { eval("\$nav_warninglogs = \"".$templates->get("modcp_nav_warninglogs")."\";");
|
eval("\$nav_banning = \"".$templates->get("modcp_nav_banning")."\";"); }
if($mybb->usergroup['canviewwarnlogs'] == 1) { eval("\$nav_warninglogs = \"".$templates->get("modcp_nav_warninglogs")."\";");
|
}
| }
|
if($mybb->usergroup['canuseipsearch'] == 1) {
| if($mybb->usergroup['canuseipsearch'] == 1) {
|
Zeile 263 | Zeile 237 |
---|
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
| $expaltext = (in_array("modcpforums", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";"); }
if(!empty($nav_editprofile) || !empty($nav_banning) || !empty($nav_warninglogs) || !empty($nav_ipsearch)) {
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";"); }
if(!empty($nav_editprofile) || !empty($nav_banning) || !empty($nav_warninglogs) || !empty($nav_ipsearch)) {
|
| $expaltext = (in_array("modcpusers", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;
|
eval("\$modcp_nav_users = \"".$templates->get("modcp_nav_users")."\";");
|
eval("\$modcp_nav_users = \"".$templates->get("modcp_nav_users")."\";");
|
}
| }
|
eval("\$modcp_nav = \"".$templates->get("modcp_nav")."\";");
$plugins->run_hooks("modcp_start");
| eval("\$modcp_nav = \"".$templates->get("modcp_nav")."\";");
$plugins->run_hooks("modcp_start");
|
Zeile 285 | Zeile 261 |
---|
verify_post_check($mybb->get_input('my_post_key'));
$mybb->input['reports'] = $mybb->get_input('reports', MyBB::INPUT_ARRAY);
|
verify_post_check($mybb->get_input('my_post_key'));
$mybb->input['reports'] = $mybb->get_input('reports', MyBB::INPUT_ARRAY);
|
if(empty($mybb->input['reports']))
| if(empty($mybb->input['reports']) && empty($mybb->cookies['inlinereports']))
|
{ error($lang->error_noselected_reports);
|
{ error($lang->error_noselected_reports);
|
}
$sql = '1=1'; if(empty($mybb->input['allbox']))
| }
$message = $lang->redirect_reportsmarked;
if(isset($mybb->cookies['inlinereports'])) { if($mybb->cookies['inlinereports'] == '|ALL|') { $message = $lang->redirect_allreportsmarked; $sql = "1=1"; if(isset($mybb->cookies['inlinereports_removed'])) { $inlinereportremovedlist = explode("|", $mybb->cookies['inlinereports_removed']); $reports = array_map("intval", $inlinereportremovedlist); $rids = implode("','", $reports); $sql = "rid NOT IN ('0','{$rids}')"; } } else { $inlinereportlist = explode("|", $mybb->cookies['inlinereports']); $reports = array_map("intval", $inlinereportlist);
if(!count($reports)) { error($lang->error_noselected_reports); }
$rids = implode("','", $reports);
$sql = "rid IN ('0','{$rids}')"; } } else
|
{ $mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode("','", $mybb->input['reports']);
|
{ $mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode("','", $mybb->input['reports']);
|
|
|
$sql = "rid IN ('0','{$rids}')"; }
$plugins->run_hooks("modcp_do_reports");
|
$sql = "rid IN ('0','{$rids}')"; }
$plugins->run_hooks("modcp_do_reports");
|
|
|
$db->update_query("reportedcontent", array('reportstatus' => 1), "{$sql}{$flist_reports}"); $cache->update_reportedcontent();
|
$db->update_query("reportedcontent", array('reportstatus' => 1), "{$sql}{$flist_reports}"); $cache->update_reportedcontent();
|
| my_unsetcookie('inlinereports'); my_unsetcookie('inlinereports_removed');
|
$page = $mybb->get_input('page', MyBB::INPUT_INT);
|
$page = $mybb->get_input('page', MyBB::INPUT_INT);
|
redirect("modcp.php?action=reports&page={$page}", $lang->redirect_reportsmarked);
| redirect("modcp.php?action=reports&page={$page}", $message);
|
}
if($mybb->input['action'] == "reports")
|
}
if($mybb->input['action'] == "reports")
|
{
| {
|
if($mybb->usergroup['canmanagereportedcontent'] == 0)
|
if($mybb->usergroup['canmanagereportedcontent'] == 0)
|
{
| {
|
error_no_permission(); }
if($numreportedposts == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_view_reported_posts);
|
error_no_permission(); }
if($numreportedposts == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_view_reported_posts);
|
}
| }
|
$lang->load('report'); add_breadcrumb($lang->mcp_nav_report_center, "modcp.php?action=reports");
| $lang->load('report'); add_breadcrumb($lang->mcp_nav_report_center, "modcp.php?action=reports");
|
Zeile 328 | Zeile 336 |
---|
if(!$perpage) { $perpage = 20;
|
if(!$perpage) { $perpage = 20;
|
}
| }
|
// Multipage if($mybb->usergroup['cancp'] || $mybb->usergroup['issupermod'])
|
// Multipage if($mybb->usergroup['cancp'] || $mybb->usergroup['issupermod'])
|
{
| {
|
$query = $db->simple_select("reportedcontent", "COUNT(rid) AS count", "reportstatus ='0'"); $report_count = $db->fetch_field($query, "count");
|
$query = $db->simple_select("reportedcontent", "COUNT(rid) AS count", "reportstatus ='0'"); $report_count = $db->fetch_field($query, "count");
|
} else {
| } else {
|
$query = $db->simple_select('reportedcontent', 'id3', "reportstatus='0' AND (type = 'post' OR type = '')");
$report_count = 0;
| $query = $db->simple_select('reportedcontent', 'id3', "reportstatus='0' AND (type = 'post' OR type = '')");
$report_count = 0;
|
Zeile 382 | Zeile 390 |
---|
$plugins->run_hooks("modcp_reports_start");
// Reports
|
$plugins->run_hooks("modcp_reports_start");
// Reports
|
$reports = '';
| $reports = $selectall = ''; $inlinecount = 0;
|
$query = $db->query(" SELECT r.*, u.username, rr.title FROM ".TABLE_PREFIX."reportedcontent r
| $query = $db->query(" SELECT r.*, u.username, rr.title FROM ".TABLE_PREFIX."reportedcontent r
|
Zeile 490 | Zeile 500 |
---|
$postcache[$post['pid']] = $post; } }
|
$postcache[$post['pid']] = $post; } }
|
| $lang->page_selected = $lang->sprintf($lang->page_selected, count($reportcache)); $lang->select_all = $lang->sprintf($lang->select_all, (int)$report_count); $lang->all_selected = $lang->sprintf($lang->all_selected, (int)$report_count); eval("\$selectall = \"".$templates->get("modcp_reports_selectall")."\";");
|
$plugins->run_hooks('modcp_reports_intermediate');
| $plugins->run_hooks('modcp_reports_intermediate');
|
Zeile 567 | Zeile 582 |
---|
} elseif($usercache[$report['lastreporter']] > 0) {
|
} elseif($usercache[$report['lastreporter']] > 0) {
|
$lastreport_user = $lang->na_deleted;
| $lastreport_user = htmlspecialchars_uni($lang->na_deleted);
|
}
$lastreport_date = my_date('relative', $report['lastreport']); $report_data['lastreporter'] = $lang->sprintf($lang->report_info_lastreporter, $lastreport_date, $lastreport_user);
|
}
$lastreport_date = my_date('relative', $report['lastreport']); $report_data['lastreporter'] = $lang->sprintf($lang->report_info_lastreporter, $lastreport_date, $lastreport_user);
|
| }
$inlinecheck = ''; if(isset($mybb->cookies['inlinereports']) && my_strpos($mybb->cookies['inlinereports'], "|{$report['rid']}|") !== false) { $inlinecheck = " checked=\"checked\""; ++$inlinecount;
|
}
$plugins->run_hooks("modcp_reports_report");
| }
$plugins->run_hooks("modcp_reports_report");
|
Zeile 676 | Zeile 698 |
---|
}
$plugins->run_hooks("modcp_allreports_start");
|
}
$plugins->run_hooks("modcp_allreports_start");
|
|
|
$query = $db->query(" SELECT r.*, u.username, p.username AS postusername, up.uid AS postuid, t.subject AS threadsubject, prrep.username AS repusername, pr.username AS profileusername, rr.title FROM ".TABLE_PREFIX."reportedcontent r
| $query = $db->query(" SELECT r.*, u.username, p.username AS postusername, up.uid AS postuid, t.subject AS threadsubject, prrep.username AS repusername, pr.username AS profileusername, rr.title FROM ".TABLE_PREFIX."reportedcontent r
|
Zeile 822 | Zeile 844 |
---|
if($order != "asc") { $order = "desc";
|
if($order != "asc") { $order = "desc";
|
}
| }
|
$plugins->run_hooks("modcp_modlogs_start");
| $plugins->run_hooks("modcp_modlogs_start");
|
Zeile 907 | Zeile 929 |
---|
$logitem['action'] = htmlspecialchars_uni($logitem['action']); $log_date = my_date('relative', $logitem['dateline']); $trow = alt_trow();
|
$logitem['action'] = htmlspecialchars_uni($logitem['action']); $log_date = my_date('relative', $logitem['dateline']); $trow = alt_trow();
|
$logitem['username'] = htmlspecialchars_uni($logitem['username']); $username = format_name($logitem['username'], $logitem['usergroup'], $logitem['displaygroup']); $logitem['profilelink'] = build_profile_link($username, $logitem['uid']);
| if($logitem['username']) { $logitem['username'] = htmlspecialchars_uni($logitem['username']); $username = format_name($logitem['username'], $logitem['usergroup'], $logitem['displaygroup']); $logitem['profilelink'] = build_profile_link($username, $logitem['uid']); } else { $username = $logitem['profilelink'] = $logitem['username'] = htmlspecialchars_uni($lang->na_deleted); }
|
$logitem['ipaddress'] = my_inet_ntop($db->unescape_binary($logitem['ipaddress']));
if($logitem['tsubject'])
| $logitem['ipaddress'] = my_inet_ntop($db->unescape_binary($logitem['ipaddress']));
if($logitem['tsubject'])
|
Zeile 1117 | Zeile 1146 |
---|
$mybb->input['starttime_month'] = $mybb->get_input('starttime_month'); $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'] = $mybb->get_input('starttime_month'); $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'] = '01'; }
| $mybb->input['starttime_month'] = '01'; }
|
Zeile 1153 | Zeile 1182 |
---|
} }
|
} }
|
if($mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
| if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
|
{ $allowhtml = 1; }
| { $allowhtml = 1; }
|
Zeile 1202 | Zeile 1231 |
---|
); $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);
| log_moderator_action(array("aid" => $aid, "subject" => $mybb->input['title']), $lang->announcement_added);
|
$plugins->run_hooks("modcp_do_new_announcement_end");
| $plugins->run_hooks("modcp_do_new_announcement_end");
|
Zeile 1264 | Zeile 1293 |
---|
else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
|
else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
|
|
|
$starttime_time = gmdate($mybb->settings['timeformat'], $localized_time); $endtime_time = gmdate($mybb->settings['timeformat'], $localized_time); $startday = $endday = gmdate("j", $localized_time);
| $starttime_time = gmdate($mybb->settings['timeformat'], $localized_time); $endtime_time = gmdate($mybb->settings['timeformat'], $localized_time); $startday = $endday = gmdate("j", $localized_time);
|
Zeile 1274 | Zeile 1303 |
---|
$announcement = array( 'subject' => '', 'message' => '',
|
$announcement = array( 'subject' => '', 'message' => '',
|
'allowhtml' => 1,
| 'allowhtml' => 0,
|
'allowmycode' => 1, 'allowsmilies' => 1 );
|
'allowmycode' => 1, 'allowsmilies' => 1 );
|
|
|
$enddateyear = $startdateyear+1;
|
$enddateyear = $startdateyear+1;
|
}
// Generate form elements $startdateday = $enddateday = ''; for($day = 1; $day <= 31; ++$day) { if($startday == $day) { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
if($endday == $day) { $selected = " selected=\"selected\""; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } }
$startmonthsel = $endmonthsel = array(); foreach(array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12') as $month) { $startmonthsel[$month] = ''; $endmonthsel[$month] = ''; } $startmonthsel[$startmonth] = "selected=\"selected\""; $endmonthsel[$endmonth] = "selected=\"selected\"";
$startdatemonth = $enddatemonth = '';
eval("\$startdatemonth .= \"".$templates->get("modcp_announcements_month_start")."\";"); eval("\$enddatemonth .= \"".$templates->get("modcp_announcements_month_end")."\";");
$title = htmlspecialchars_uni($announcement['subject']);
| }
// Generate form elements $startdateday = $enddateday = ''; for($day = 1; $day <= 31; ++$day) { if($startday == $day) { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
if($endday == $day) { $selected = " selected=\"selected\""; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } }
$startmonthsel = $endmonthsel = array(); foreach(array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12') as $month) { $startmonthsel[$month] = ''; $endmonthsel[$month] = ''; } $startmonthsel[$startmonth] = "selected=\"selected\""; $endmonthsel[$endmonth] = "selected=\"selected\"";
$startdatemonth = $enddatemonth = '';
eval("\$startdatemonth .= \"".$templates->get("modcp_announcements_month_start")."\";"); eval("\$enddatemonth .= \"".$templates->get("modcp_announcements_month_end")."\";");
$title = htmlspecialchars_uni($announcement['subject']);
|
$message = htmlspecialchars_uni($announcement['message']);
|
$message = htmlspecialchars_uni($announcement['message']);
|
|
|
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
|
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
|
if($announcement['allowhtml'])
| if($mybb->settings['announcementshtml'])
|
{
|
{
|
$html_sel['yes'] = ' checked="checked"';
| if($announcement['allowhtml']) { $html_sel['yes'] = ' checked="checked"'; } else { $html_sel['no'] = ' checked="checked"'; }
eval("\$allow_html = \"".$templates->get("modcp_announcements_allowhtml")."\";");
|
} else {
|
} else {
|
$html_sel['no'] = ' checked="checked"';
| $allow_html = '';
|
}
if($announcement['allowmycode'])
| }
if($announcement['allowmycode'])
|
Zeile 1376 | Zeile 1415 |
---|
'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
|
'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
|
'allowhtml' => $mybb->get_input('allowhtml', MyBB::INPUT_INT),
| 'allowhtml' => $mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT),
|
'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT), 'dateline' => TIME_NOW,
| 'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT), 'dateline' => TIME_NOW,
|
Zeile 1442 | Zeile 1481 |
---|
}
// 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'], "canmanageannouncements")) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
| if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'], "canmanageannouncements")) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 1525 | Zeile 1564 |
---|
} }
|
} }
|
if($mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
| if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
|
{ $allowhtml = 1; }
| { $allowhtml = 1; }
|
Zeile 1574 | Zeile 1613 |
---|
); $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);
| log_moderator_action(array("aid" => $announcement['aid'], "subject" => $mybb->input['title']), $lang->announcement_edited);
|
$plugins->run_hooks("modcp_do_edit_announcement_end");
| $plugins->run_hooks("modcp_do_edit_announcement_end");
|
Zeile 1731 | Zeile 1770 |
---|
$message = htmlspecialchars_uni($announcement['message']);
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
|
$message = htmlspecialchars_uni($announcement['message']);
$html_sel = $mycode_sel = $smilies_sel = array('yes' => '', 'no' => '');
|
if($announcement['allowhtml'])
| if($mybb->settings['announcementshtml'])
|
{
|
{
|
$html_sel['yes'] = ' checked="checked"';
| if($announcement['allowhtml']) { $html_sel['yes'] = ' checked="checked"'; } else { $html_sel['no'] = ' checked="checked"'; }
eval("\$allow_html = \"".$templates->get("modcp_announcements_allowhtml")."\";");
|
} else {
|
} else {
|
$html_sel['no'] = ' checked="checked"';
| $allow_html = '';
|
}
if($announcement['allowmycode'])
| }
if($announcement['allowmycode'])
|
Zeile 1780 | Zeile 1829 |
---|
'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
|
'uid' => $mybb->user['uid'], 'subject' => $mybb->input['title'], 'message' => $mybb->input['message'],
|
'allowhtml' => $mybb->get_input('allowhtml', MyBB::INPUT_INT),
| 'allowhtml' => $mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT),
|
'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT), 'dateline' => TIME_NOW,
| 'allowmycode' => $mybb->get_input('allowmycode', MyBB::INPUT_INT), 'allowsmilies' => $mybb->get_input('allowsmilies', MyBB::INPUT_INT), 'dateline' => TIME_NOW,
|
Zeile 1861 | Zeile 1910 |
---|
foreach($global_announcements as $aid => $announcement) { $trow = alt_trow();
|
foreach($global_announcements as $aid => $announcement) { $trow = alt_trow();
|
if($announcement['startdate'] > TIME_NOW || ($announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0))
| if((isset($announcement['startdate']) && $announcement['startdate'] > TIME_NOW) || (isset($announcement['enddate']) && $announcement['enddate'] < TIME_NOW && $announcement['enddate'] != 0))
|
{ eval("\$icon = \"".$templates->get("modcp_announcements_announcement_expired")."\";"); }
| { eval("\$icon = \"".$templates->get("modcp_announcements_announcement_expired")."\";"); }
|
Zeile 2015 | Zeile 2064 |
---|
{ $attachments = array_map("intval", array_keys($mybb->input['attachments'])); $query = $db->query("
|
{ $attachments = array_map("intval", array_keys($mybb->input['attachments'])); $query = $db->query("
|
SELECT a.pid, a.aid
| SELECT a.pid, a.aid, t.tid
|
FROM ".TABLE_PREFIX."attachments a LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
| FROM ".TABLE_PREFIX."attachments a LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
|
Zeile 2031 | Zeile 2080 |
---|
if($action == "approve") { $db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'");
|
if($action == "approve") { $db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'");
|
}
| if(isset($attachment['tid'])) { update_thread_counters((int)$attachment['tid'], array("attachmentcount" => "+1")); } }
|
else if($action == "delete") { remove_attachment($attachment['pid'], '', $attachment['aid']);
|
else if($action == "delete") { remove_attachment($attachment['pid'], '', $attachment['aid']);
|
| if(isset($attachment['tid'])) { update_thread_counters((int)$attachment['tid'], array("attachmentcount" => "-1")); }
|
}
|
}
|
}
| }
|
$plugins->run_hooks("modcp_do_modqueue_end");
redirect("modcp.php?action=modqueue&type=attachments", $lang->redirect_attachmentsmoderated); } }
|
$plugins->run_hooks("modcp_do_modqueue_end");
redirect("modcp.php?action=modqueue&type=attachments", $lang->redirect_attachmentsmoderated); } }
|
|
|
if($mybb->input['action'] == "modqueue") { $navsep = '';
if($mybb->usergroup['canmanagemodqueue'] == 0)
|
if($mybb->input['action'] == "modqueue") { $navsep = '';
if($mybb->usergroup['canmanagemodqueue'] == 0)
|
{
| {
|
error_no_permission(); }
| error_no_permission(); }
|
Zeile 2065 | Zeile 2122 |
---|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
}
$forum_cache = $cache->read("forums");
| }
$forum_cache = $cache->read("forums");
|
$query = $db->simple_select("threads", "COUNT(tid) AS unapprovedthreads", "visible='0' {$flist_queue_threads}"); $unapproved_threads = $db->fetch_field($query, "unapprovedthreads");
| $query = $db->simple_select("threads", "COUNT(tid) AS unapprovedthreads", "visible='0' {$flist_queue_threads}"); $unapproved_threads = $db->fetch_field($query, "unapprovedthreads");
|
Zeile 2080 | Zeile 2137 |
---|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$pages = ceil($pages);
| $pages = ceil($pages);
|
if($mybb->get_input('page') == "last") { $page = $pages;
|
if($mybb->get_input('page') == "last") { $page = $pages;
|
}
| }
|
if($page > $pages || $page <= 0) { $page = 1;
| if($page > $pages || $page <= 0) { $page = 1;
|
Zeile 2129 | Zeile 2186 |
---|
{ $thread['threadusername'] = htmlspecialchars_uni($thread['threadusername']); $profile_link = $thread['threadusername'];
|
{ $thread['threadusername'] = htmlspecialchars_uni($thread['threadusername']); $profile_link = $thread['threadusername'];
|
} else {
| } else {
|
$profile_link = $lang->guest; } }
| $profile_link = $lang->guest; } }
|
Zeile 2147 | Zeile 2204 |
---|
}
if(!$threads && $mybb->input['type'] == "threads")
|
}
if(!$threads && $mybb->input['type'] == "threads")
|
{
| {
|
eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";"); }
| eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";"); }
|
Zeile 2172 | Zeile 2229 |
---|
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);
|
}
| }
|
$type = 'threads'; }
|
$type = 'threads'; }
|
|
|
if($mybb->input['type'] == "posts" || (!$mybb->input['type'] && !$threadqueue && ($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1))) { if($nummodqueueposts == 0 && $mybb->usergroup['issupermod'] != 1)
|
if($mybb->input['type'] == "posts" || (!$mybb->input['type'] && !$threadqueue && ($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1))) { if($nummodqueueposts == 0 && $mybb->usergroup['issupermod'] != 1)
|
{ error($lang->you_cannot_moderate_posts); }
| { error($lang->you_cannot_moderate_posts); }
|
$forum_cache = $cache->read("forums");
$query = $db->query("
| $forum_cache = $cache->read("forums");
$query = $db->query("
|
Zeile 2231 | Zeile 2288 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT {$start}, {$perpage} "); $posts = '';
| LIMIT {$start}, {$perpage} "); $posts = '';
|
Zeile 2280 | Zeile 2337 |
---|
add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
$plugins->run_hooks("modcp_modqueue_posts_end");
|
add_breadcrumb($lang->mcp_nav_modqueue_posts, "modcp.php?action=modqueue&type=posts");
$plugins->run_hooks("modcp_modqueue_posts_end");
|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { $navsep = " | "; eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";"); }
| if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { $navsep = " | "; eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";"); }
|
if($mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1)) {
| if($mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1)) {
|
Zeile 2304 | Zeile 2361 |
---|
if($mybb->settings['enableattachments'] == 0) { error($lang->attachments_disabled);
|
if($mybb->settings['enableattachments'] == 0) { error($lang->attachments_disabled);
|
}
| }
|
if($nummodqueueattach == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_attachments);
| if($nummodqueueattach == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_attachments);
|
Zeile 2324 | Zeile 2381 |
---|
if($mybb->get_input('page') != "last") { $page = $mybb->get_input('page', MyBB::INPUT_INT);
|
if($mybb->get_input('page') != "last") { $page = $mybb->get_input('page', MyBB::INPUT_INT);
|
}
| }
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_attachments / $perpage;
| $perpage = $mybb->settings['postsperpage']; $pages = $unapproved_attachments / $perpage;
|
Zeile 2336 | Zeile 2393 |
---|
}
if($page > $pages || $page <= 0)
|
}
if($page > $pages || $page <= 0)
|
{
| {
|
$page = 1; }
| $page = 1; }
|
Zeile 2431 | Zeile 2488 |
---|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request
|
if($mybb->input['action'] == "do_editprofile") { // Verify incoming POST request
|
verify_post_check($mybb->input['my_post_key']);
| verify_post_check($mybb->get_input('my_post_key'));
|
if($mybb->usergroup['caneditprofiles'] == 0)
|
if($mybb->usergroup['caneditprofiles'] == 0)
|
{
| {
|
error_no_permission(); }
|
error_no_permission(); }
|
$user = get_user($mybb->input['uid']); if(!$user) { error($lang->error_nomember); }
// Check if the current user has permission to edit this user
| $user = get_user($mybb->input['uid']); if(!$user) { error($lang->error_nomember); }
// Check if the current user has permission to edit this user
|
if(!modcp_can_manage_user($user['uid'])) { error_no_permission();
| if(!modcp_can_manage_user($user['uid'])) { error_no_permission();
|
Zeile 2463 | Zeile 2520 |
---|
$mybb->input['awaymonth'] = my_date('n', $awaydate); } if(!$mybb->get_input('awayyear', MyBB::INPUT_INT))
|
$mybb->input['awaymonth'] = my_date('n', $awaydate); } if(!$mybb->get_input('awayyear', MyBB::INPUT_INT))
|
{
| {
|
$mybb->input['awayyear'] = my_date('Y', $awaydate); }
| $mybb->input['awayyear'] = my_date('Y', $awaydate); }
|
Zeile 2490 | Zeile 2547 |
---|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
);
| );
|
} else {
| } else {
|
Zeile 2512 | Zeile 2569 |
---|
"profile_fields" => $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY), "profile_fields_editable" => true, "website" => $mybb->get_input('website'),
|
"profile_fields" => $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY), "profile_fields_editable" => true, "website" => $mybb->get_input('website'),
|
"icq" => $mybb->get_input('icq'), "aim" => $mybb->get_input('aim'), "yahoo" => $mybb->get_input('yahoo'),
| |
"skype" => $mybb->get_input('skype'), "google" => $mybb->get_input('google'), "signature" => $mybb->get_input('signature'), "usernotes" => $mybb->get_input('usernotes'), "away" => $away
|
"skype" => $mybb->get_input('skype'), "google" => $mybb->get_input('google'), "signature" => $mybb->get_input('signature'), "usernotes" => $mybb->get_input('usernotes'), "away" => $away
|
);
| );
|
$updated_user['birthday'] = array( "day" => $mybb->get_input('birthday_day', MyBB::INPUT_INT),
| $updated_user['birthday'] = array( "day" => $mybb->get_input('birthday_day', MyBB::INPUT_INT),
|
Zeile 2529 | Zeile 2583 |
---|
);
if(!empty($mybb->input['usertitle']))
|
);
if(!empty($mybb->input['usertitle']))
|
{
| {
|
$updated_user['usertitle'] = $mybb->get_input('usertitle'); } else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
|
$updated_user['usertitle'] = $mybb->get_input('usertitle'); } else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
|
}
| }
|
if(!empty($mybb->input['remove_avatar'])) {
| if(!empty($mybb->input['remove_avatar'])) {
|
Zeile 2544 | Zeile 2598 |
---|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
$errors = '';
| $errors = array();
|
// Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
| // Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
|
Zeile 2593 | Zeile 2647 |
---|
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']] = $mybb->get_input($option['time'], MyBB::INPUT_INT);
| ${$option['time']} = $mybb->get_input($option['time'], MyBB::INPUT_INT);
|
$mybb->input[$option['period']] = $mybb->get_input($option['period']); if(empty($mybb->input[$option['action']])) {
| $mybb->input[$option['period']] = $mybb->get_input($option['period']); if(empty($mybb->input[$option['action']])) {
|
Zeile 2616 | Zeile 2670 |
---|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
if(!is_array($errors))
| else
|
{ $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
| { $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
|
Zeile 2654 | Zeile 2707 |
---|
// Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting
|
// Those with javascript turned off will be able to select both - cheeky! // Check to make sure we're not moderating AND suspending posting
|
if(isset($extra_user_updates) && $extra_user_updates['moderateposts'] && $extra_user_updates['suspendposting'])
| if(isset($extra_user_updates) && !empty($extra_user_updates['moderateposts']) && !empty($extra_user_updates['suspendposting']))
|
{ $errors[] = $lang->suspendmoderate_error; }
|
{ $errors[] = $lang->suspendmoderate_error; }
|
if(is_array($errors))
| if(is_array($errors) && !empty($errors))
|
{ $mybb->input['action'] = "editprofile"; }
| { $mybb->input['action'] = "editprofile"; }
|
Zeile 2701 | Zeile 2754 |
---|
if(!modcp_can_manage_user($user['uid'])) { error_no_permission();
|
if(!modcp_can_manage_user($user['uid'])) { error_no_permission();
|
| }
$userperms = user_permissions($user['uid']);
// Set display group $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
$display_group = usergroup_displaygroup($user['displaygroup']); if(is_array($display_group)) { $userperms = array_merge($userperms, $display_group);
|
}
if(!my_validate_url($user['website'])) { $user['website'] = '';
|
}
if(!my_validate_url($user['website'])) { $user['website'] = '';
|
}
if($user['icq'] != "0") { $user['icq'] = (int)$user['icq'];
| |
}
if(!$errors)
|
}
if(!$errors)
|
{
| {
|
$mybb->input = array_merge($user, $mybb->input); $birthday = explode('-', $user['birthday']); if(!isset($birthday[1]))
| $mybb->input = array_merge($user, $mybb->input); $birthday = explode('-', $user['birthday']); if(!isset($birthday[1]))
|
Zeile 2728 | Zeile 2792 |
---|
list($mybb->input['birthday_day'], $mybb->input['birthday_month'], $mybb->input['birthday_year']) = $birthday; } else
|
list($mybb->input['birthday_day'], $mybb->input['birthday_month'], $mybb->input['birthday_year']) = $birthday; } else
|
{
| {
|
$errors = inline_error($errors); }
// Sanitize all input
|
$errors = inline_error($errors); }
// Sanitize all input
|
foreach(array('usertitle', 'website', 'icq', 'aim', 'yahoo', 'skype', 'google', 'signature', 'birthday_day', 'birthday_month', 'birthday_year') as $field)
| foreach(array('usertitle', 'website', 'skype', 'google', 'signature', 'birthday_day', 'birthday_month', 'birthday_year') as $field)
|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->get_input($field)); }
|
{ $mybb->input[$field] = htmlspecialchars_uni($mybb->get_input($field)); }
|
// Custom user title, check to see if we have a default group title if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
$displaygroupfields = array('usertitle'); $display_group = usergroup_displaygroup($user['displaygroup']);
if(!empty($display_group['usertitle']))
| // Custom user title if(!empty($userperms['usertitle']))
|
{
|
{
|
$defaulttitle = htmlspecialchars_uni($display_group['usertitle']);
| $defaulttitle = htmlspecialchars_uni($userperms['usertitle']);
|
} else {
| } else {
|
Zeile 2760 | Zeile 2816 |
---|
{ if($title['posts'] <= $user['postnum']) {
|
{ if($title['posts'] <= $user['postnum']) {
|
$defaulttitle = $title['title'];
| $defaulttitle = htmlspecialchars_uni($title['title']);
|
break; } }
| break; } }
|
Zeile 2794 | Zeile 2850 |
---|
$bdaymonthsel[$month] = ''; } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
$bdaymonthsel[$month] = ''; } $bdaymonthsel[$mybb->input['birthday_month']] = 'selected="selected"';
|
| $awaysection = '';
|
if($mybb->settings['allowaway'] != 0) {
| if($mybb->settings['allowaway'] != 0) {
|
Zeile 2866 | Zeile 2924 |
---|
$plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
|
$plugins->run_hooks("modcp_editprofile_start");
// Fetch profile fields
|
| $user_fields = array();
|
$query = $db->simple_select("userfields", "*", "ufid='{$user['uid']}'");
|
$query = $db->simple_select("userfields", "*", "ufid='{$user['uid']}'");
|
$user_fields = $db->fetch_array($query);
| if($db->num_rows($query) > 0) { $user_fields = $db->fetch_array($query); }
|
$requiredfields = ''; $customfields = '';
| $requiredfields = ''; $customfields = '';
|
Zeile 2892 | Zeile 2954 |
---|
} $field = "fid{$profilefield['fid']}"; if($errors)
|
} $field = "fid{$profilefield['fid']}"; if($errors)
|
{
| {
|
if(isset($mybb->input['profile_fields'][$field])) { $userfield = $mybb->input['profile_fields'][$field];
|
if(isset($mybb->input['profile_fields'][$field])) { $userfield = $mybb->input['profile_fields'][$field];
|
} } else {
| } } elseif(isset($user_fields[$field])) {
|
$userfield = $user_fields[$field]; } if($type == "multiselect") { if($errors)
|
$userfield = $user_fields[$field]; } if($type == "multiselect") { if($errors)
|
{
| {
|
$useropts = $userfield; } else
| $useropts = $userfield; } else
|
Zeile 2917 | Zeile 2979 |
---|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
foreach($useropts as $key => $val) { $seloptions[$val] = $val;
|
} } $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) {
| } } $expoptions = explode("\n", $options); if(is_array($expoptions)) { foreach($expoptions as $key => $val) {
|
$val = trim($val); $val = str_replace("\n", "\\n", $val);
$sel = ""; if(isset($seloptions[$val]) && $val == $seloptions[$val])
|
$val = trim($val); $val = str_replace("\n", "\\n", $val);
$sel = ""; if(isset($seloptions[$val]) && $val == $seloptions[$val])
|
{ $sel = " selected=\"selected\""; }
| { $sel = " selected=\"selected\""; }
|
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";");
|
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";");
|
}
| }
|
if(!$profilefield['length']) { $profilefield['length'] = 3; }
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";");
|
if(!$profilefield['length']) { $profilefield['length'] = 3; }
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";");
|
}
| }
|
} elseif($type == "select") {
| } elseif($type == "select") {
|
Zeile 2959 | Zeile 3021 |
---|
}
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";");
|
}
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";");
|
}
| }
|
if(!$profilefield['length']) { $profilefield['length'] = 1;
| if(!$profilefield['length']) { $profilefield['length'] = 1;
|
Zeile 2969 | Zeile 3031 |
---|
} } elseif($type == "radio")
|
} } elseif($type == "radio")
|
{ $expoptions = explode("\n", $options); if(is_array($expoptions)) {
| { $expoptions = explode("\n", $options); if(is_array($expoptions)) {
|
foreach($expoptions as $key => $val) { $checked = "";
| foreach($expoptions as $key => $val) { $checked = "";
|
Zeile 2990 | Zeile 3052 |
---|
if($errors) { $useropts = $userfield;
|
if($errors) { $useropts = $userfield;
|
}
| }
|
else { $useropts = explode("\n", $userfield);
| else { $useropts = explode("\n", $userfield);
|
Zeile 3035 | Zeile 3097 |
---|
}
if($profilefield['required'] == 1)
|
}
if($profilefield['required'] == 1)
|
{
| {
|
eval("\$requiredfields .= \"".$templates->get("usercp_profile_customfield")."\";");
|
eval("\$requiredfields .= \"".$templates->get("usercp_profile_customfield")."\";");
|
}
| }
|
else { eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
|
else { eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
|
} }
| } }
|
if($customfields) { eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";");
| if($customfields) { eval("\$customfields = \"".$templates->get("usercp_profile_profilefields")."\";");
|
Zeile 3127 | Zeile 3189 |
---|
$suspendsignature_info = $moderateposts_info = $suspendposting_info = ''; $action_options = $modpost_options = $suspost_options = '';
|
$suspendsignature_info = $moderateposts_info = $suspendposting_info = ''; $action_options = $modpost_options = $suspost_options = '';
|
| $modopts = array();
|
foreach($moderator_options as $option) {
|
foreach($moderator_options as $option) {
|
$mybb->input[$option['time']] = $mybb->get_input($option['time'], MyBB::INPUT_INT);
| ${$option['time']} = $mybb->get_input($option['time'], MyBB::INPUT_INT);
|
// 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 3189 | Zeile 3252 |
---|
break; case "suspendposting": eval("\$suspost_options = \"".$templates->get("modcp_editprofile_select")."\";");
|
break; case "suspendposting": eval("\$suspost_options = \"".$templates->get("modcp_editprofile_select")."\";");
|
break; } }
| break; } }
|
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
eval("\$suspend_signature = \"".$templates->get("modcp_editprofile_signature")."\";");
|
| $user['usernotes'] = htmlspecialchars_uni($user['usernotes']);
|
if(!isset($newtitle)) { $newtitle = '';
|
if(!isset($newtitle)) { $newtitle = '';
|
}
$plugins->run_hooks("modcp_editprofile_end");
| }
$birthday_year = $mybb->input['birthday_year']; $user_website = $mybb->input['website']; $user_skype = $mybb->input['skype']; $user_google = $mybb->input['google'];
$plugins->run_hooks("modcp_editprofile_end");
|
eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";"); output_page($edituser); }
| eval("\$edituser = \"".$templates->get("modcp_editprofile")."\";"); output_page($edituser); }
|
Zeile 3219 | Zeile 3289 |
---|
if(!$perpage || $perpage <= 0) { $perpage = $mybb->settings['threadsperpage'];
|
if(!$perpage || $perpage <= 0) { $perpage = $mybb->settings['threadsperpage'];
|
}
| }
|
$where = '';
if(isset($mybb->input['username']))
| $where = '';
if(isset($mybb->input['username']))
|
Zeile 3263 | Zeile 3333 |
---|
$ordersel[$order] = " selected=\"selected\"";
$query = $db->simple_select("users", "COUNT(uid) AS count", "1=1 {$where}");
|
$ordersel[$order] = " selected=\"selected\"";
$query = $db->simple_select("users", "COUNT(uid) AS count", "1=1 {$where}");
|
$user_count = $db->fetch_field($query, "count");
| $user_count = $db->fetch_field($query, "count");
|
// Figure out if we need to display multiple pages. if($mybb->get_input('page') != "last") {
| // Figure out if we need to display multiple pages. if($mybb->get_input('page') != "last") {
|
Zeile 3291 | Zeile 3361 |
---|
{ $start = 0; $page = 1;
|
{ $start = 0; $page = 1;
|
}
| }
|
$page_url = 'modcp.php?action=finduser'; foreach(array('username', 'sortby', 'order') as $field) { if(!empty($mybb->input[$field])) { $page_url .= "&{$field}=".$mybb->input[$field];
|
$page_url = 'modcp.php?action=finduser'; foreach(array('username', 'sortby', 'order') as $field) { if(!empty($mybb->input[$field])) { $page_url .= "&{$field}=".$mybb->input[$field];
|
} }
| } }
|
$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");
|
Zeile 3321 | Zeile 3391 |
---|
if($user['invisible'] == 1 && $mybb->usergroup['canviewwolinvis'] != 1 && $user['uid'] != $mybb->user['uid']) {
|
if($user['invisible'] == 1 && $mybb->usergroup['canviewwolinvis'] != 1 && $user['uid'] != $mybb->user['uid']) {
|
$lastdate = $lang->lastvisit_never;
if($user['lastvisit']) { // We have had at least some active time, hide it instead $lastdate = $lang->lastvisit_hidden; } }
| // We have had at least some active time, hide it instead $lastdate = $lang->lastvisit_hidden; } else if($user['lastvisit']) { $lastdate = my_date('relative', $user['lastvisit']); }
|
else {
|
else {
|
$lastdate = my_date('relative', $user['lastvisit']); }
| $lastdate = $lang->lastvisit_never; }
|
$usergroup = htmlspecialchars_uni($usergroups_cache[$user['usergroup']]['title']); eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";"); }
// No results? if(!$users)
|
$usergroup = htmlspecialchars_uni($usergroups_cache[$user['usergroup']]['title']); eval("\$users .= \"".$templates->get("modcp_finduser_user")."\";"); }
// No results? if(!$users)
|
{
| {
|
eval("\$users = \"".$templates->get("modcp_finduser_noresults")."\";"); }
$plugins->run_hooks("modcp_finduser_end");
|
eval("\$users = \"".$templates->get("modcp_finduser_noresults")."\";"); }
$plugins->run_hooks("modcp_finduser_end");
|
| $username = htmlspecialchars_uni($mybb->get_input('username'));
|
eval("\$finduser = \"".$templates->get("modcp_finduser")."\";"); output_page($finduser); }
| eval("\$finduser = \"".$templates->get("modcp_finduser")."\";"); output_page($finduser); }
|
Zeile 3486 | Zeile 3556 |
---|
$per_page = (int)$mybb->input['filter']['per_page']; } $start = ($page-1) * $per_page;
|
$per_page = (int)$mybb->input['filter']['per_page']; } $start = ($page-1) * $per_page;
|
| $pages = ceil($total_warnings / $per_page); if($page > $pages) { $start = 0; $page = 1; }
|
// Build the base URL for pagination links $url = 'modcp.php?action=warninglogs'; if(is_array($mybb->input['filter']) && count($mybb->input['filter']))
| // Build the base URL for pagination links $url = 'modcp.php?action=warninglogs'; if(is_array($mybb->input['filter']) && count($mybb->input['filter']))
|
Zeile 3527 | Zeile 3603 |
---|
$row['mod_username'] = htmlspecialchars_uni($row['mod_username']); $mod_username = format_name($row['mod_username'], $row['mod_usergroup'], $row['mod_displaygroup']); $mod_username_link = build_profile_link($mod_username, $row['mod_uid']);
|
$row['mod_username'] = htmlspecialchars_uni($row['mod_username']); $mod_username = format_name($row['mod_username'], $row['mod_usergroup'], $row['mod_displaygroup']); $mod_username_link = build_profile_link($mod_username, $row['mod_uid']);
|
$issued_date = my_date($mybb->settings['dateformat'], $row['dateline']).' '.my_date($mybb->settings['timeformat'], $row['dateline']);
| $issued_date = my_date('normal', $row['dateline']);
|
$revoked_text = ''; if($row['daterevoked'] > 0) {
| $revoked_text = ''; if($row['daterevoked'] > 0) {
|
Zeile 3536 | Zeile 3612 |
---|
} if($row['expires'] > 0) {
|
} if($row['expires'] > 0) {
|
$expire_date = my_date('relative', $row['expires'], '', 2);
| $expire_date = nice_time($row['expires']-TIME_NOW);
|
} else {
| } else {
|
Zeile 3559 | Zeile 3635 |
---|
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");
| }
$plugins->run_hooks("modcp_warninglogs_end");
$filter_username = $mybb->input['filter']['username']; $filter_modusername = $mybb->input['filter']['mod_username']; $filter_reason = $mybb->input['filter']['reason'];
|
eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";"); output_page($warninglogs);
| eval("\$warninglogs = \"".$templates->get("modcp_warninglogs")."\";"); output_page($warninglogs);
|
Zeile 3570 | Zeile 3650 |
---|
if($mybb->input['action'] == "ipsearch") { if($mybb->usergroup['canuseipsearch'] == 0)
|
if($mybb->input['action'] == "ipsearch") { if($mybb->usergroup['canuseipsearch'] == 0)
|
{
| {
|
error_no_permission(); }
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
error_no_permission(); }
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
| $ipsearch_results = $ipaddressvalue = '';
|
$mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) {
| $mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) {
|
Zeile 3593 | Zeile 3674 |
---|
// Searching post IP addresses if(isset($mybb->input['search_posts'])) {
|
// Searching post IP addresses if(isset($mybb->input['search_posts'])) {
|
| $post_ip_sql = '';
|
if($ip_range) { if(!is_array($ip_range))
| if($ip_range) { if(!is_array($ip_range))
|
Zeile 3606 | Zeile 3688 |
---|
}
$plugins->run_hooks("modcp_ipsearch_posts_start");
|
}
$plugins->run_hooks("modcp_ipsearch_posts_start");
|
|
|
if($post_ip_sql) { $where_sql = '';
| if($post_ip_sql) { $where_sql = '';
|
Zeile 3631 | Zeile 3713 |
---|
if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1) { $onlyusfids[] = $fid;
|
if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1) { $onlyusfids[] = $fid;
|
} }
| } }
|
if(!empty($onlyusfids)) { $where_sql .= " AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
| if(!empty($onlyusfids)) { $where_sql .= " AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
|
Zeile 3651 | Zeile 3733 |
---|
if($moderator['canviewunapprove'] == 1) { $unapprove_forums[] = $moderator['fid'];
|
if($moderator['canviewunapprove'] == 1) { $unapprove_forums[] = $moderator['fid'];
|
}
| }
|
if($moderator['canviewdeleted'] == 1) { $deleted_forums[] = $moderator['fid'];
| if($moderator['canviewdeleted'] == 1) { $deleted_forums[] = $moderator['fid'];
|
Zeile 3687 | Zeile 3769 |
---|
// Searching user IP addresses if(isset($mybb->input['search_users'])) {
|
// Searching user IP addresses if(isset($mybb->input['search_users'])) {
|
| $user_ip_sql = '';
|
if($ip_range)
|
if($ip_range)
|
{
| {
|
if(!is_array($ip_range)) { $user_ip_sql = "regip=".$db->escape_binary($ip_range)." OR lastip=".$db->escape_binary($ip_range);
| if(!is_array($ip_range)) { $user_ip_sql = "regip=".$db->escape_binary($ip_range)." OR lastip=".$db->escape_binary($ip_range);
|
Zeile 3706 | Zeile 3789 |
---|
$query = $db->simple_select('users', 'COUNT(uid) AS count', $user_ip_sql);
$user_results = $db->fetch_field($query, "count");
|
$query = $db->simple_select('users', 'COUNT(uid) AS count', $user_ip_sql);
$user_results = $db->fetch_field($query, "count");
|
}
| }
|
}
$total_results = $post_results+$user_results;
| }
$total_results = $post_results+$user_results;
|
Zeile 3725 | Zeile 3808 |
---|
// Figure out if we need to display multiple pages. if($mybb->get_input('page') != "last")
|
// Figure out if we need to display multiple pages. if($mybb->get_input('page') != "last")
|
{
| {
|
$page = $mybb->get_input('page', MyBB::INPUT_INT); }
| $page = $mybb->get_input('page', MyBB::INPUT_INT); }
|
Zeile 3743 | Zeile 3826 |
---|
}
if($page)
|
}
if($page)
|
{
| {
|
$start = ($page-1) * $perpage; } else
| $start = ($page-1) * $perpage; } else
|
Zeile 3761 | Zeile 3844 |
---|
} } $multipage = multipage($total_results, $perpage, $page, $page_url);
|
} } $multipage = multipage($total_results, $perpage, $page, $page_url);
|
|
|
$post_limit = $perpage; $results = ''; if(isset($mybb->input['search_users']) && $user_results && $start <= $user_results)
| $post_limit = $perpage; $results = ''; if(isset($mybb->input['search_users']) && $user_results && $start <= $user_results)
|
Zeile 3779 | Zeile 3862 |
---|
if(is_array($ip_range)) { if(strcmp($ip_range[0], $ipaddress['regip']) <= 0 && strcmp($ip_range[1], $ipaddress['regip']) >= 0)
|
if(is_array($ip_range)) { if(strcmp($ip_range[0], $ipaddress['regip']) <= 0 && strcmp($ip_range[1], $ipaddress['regip']) >= 0)
|
{
| {
|
eval("\$subject = \"".$templates->get("modcp_ipsearch_result_regip")."\";"); $ip = my_inet_ntop($db->unescape_binary($ipaddress['regip'])); }
| eval("\$subject = \"".$templates->get("modcp_ipsearch_result_regip")."\";"); $ip = my_inet_ntop($db->unescape_binary($ipaddress['regip'])); }
|
Zeile 3798 | Zeile 3881 |
---|
{ eval("\$subject = \"".$templates->get("modcp_ipsearch_result_lastip")."\";"); $ip = my_inet_ntop($db->unescape_binary($ipaddress['lastip']));
|
{ eval("\$subject = \"".$templates->get("modcp_ipsearch_result_lastip")."\";"); $ip = my_inet_ntop($db->unescape_binary($ipaddress['lastip']));
|
}
| }
|
if($ip)
|
if($ip)
|
{
| {
|
eval("\$results .= \"".$templates->get("modcp_ipsearch_result")."\";"); $result = true; } if($result) { --$post_limit;
|
eval("\$results .= \"".$templates->get("modcp_ipsearch_result")."\";"); $result = true; } if($result) { --$post_limit;
|
}
| }
|
} } $post_start = 0;
| } } $post_start = 0;
|
Zeile 3828 | Zeile 3911 |
---|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = p.tid) WHERE {$post_ip_sql}{$where_sql}{$visible_sql}
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = p.tid) WHERE {$post_ip_sql}{$where_sql}{$visible_sql}
|
ORDER BY p.dateline desc
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT {$post_start}, {$post_limit} "); while($ipaddress = $db->fetch_array($query))
| LIMIT {$post_start}, {$post_limit} "); while($ipaddress = $db->fetch_array($query))
|
Zeile 3844 | Zeile 3927 |
---|
while($thread = $db->fetch_array($query)) { $ipaddresses[$tids[$thread['tid']]]['threadsubject'] = $thread['subject'];
|
while($thread = $db->fetch_array($query)) { $ipaddresses[$tids[$thread['tid']]]['threadsubject'] = $thread['subject'];
|
}
| }
|
unset($tids);
$query = $db->simple_select("users", "username, uid", "uid IN(".implode(',', array_keys($uids)).")");
| unset($tids);
$query = $db->simple_select("users", "username, uid", "uid IN(".implode(',', array_keys($uids)).")");
|
Zeile 3853 | Zeile 3936 |
---|
$ipaddresses[$uids[$user['uid']]]['username'] = $user['username']; } unset($uids);
|
$ipaddresses[$uids[$user['uid']]]['username'] = $user['username']; } unset($uids);
|
|
|
foreach($ipaddresses as $ipaddress) { $ip = my_inet_ntop($db->unescape_binary($ipaddress['ipaddress']));
|
foreach($ipaddresses as $ipaddress) { $ip = my_inet_ntop($db->unescape_binary($ipaddress['ipaddress']));
|
if(!$ipaddress['username'])
| if(empty($ipaddress['username']))
|
{ $ipaddress['username'] = $ipaddress['postusername']; // Guest username support } $ipaddress['username'] = htmlspecialchars_uni($ipaddress['username']); $trow = alt_trow();
|
{ $ipaddress['username'] = $ipaddress['postusername']; // Guest username support } $ipaddress['username'] = htmlspecialchars_uni($ipaddress['username']); $trow = alt_trow();
|
if(!$ipaddress['subject'])
| if(empty($ipaddress['subject']))
|
{ $ipaddress['subject'] = "RE: {$ipaddress['threadsubject']}"; }
| { $ipaddress['subject'] = "RE: {$ipaddress['threadsubject']}"; }
|
Zeile 3901 | Zeile 3984 |
---|
}
eval("\$ipsearch_results = \"".$templates->get("modcp_ipsearch_results")."\";");
|
}
eval("\$ipsearch_results = \"".$templates->get("modcp_ipsearch_results")."\";");
|
}
| }
|
// Fetch filter options if(!$mybb->input['ipaddress'])
| // Fetch filter options if(!$mybb->input['ipaddress'])
|
Zeile 3928 | Zeile 4011 |
---|
if($mybb->input['action'] == "iplookup") { if($mybb->usergroup['canuseipsearch'] == 0)
|
if($mybb->input['action'] == "iplookup") { if($mybb->usergroup['canuseipsearch'] == 0)
|
{
| {
|
error_no_permission(); }
| error_no_permission(); }
|
Zeile 3951 | Zeile 4034 |
---|
$ipaddress_location .= $lang->comma.htmlspecialchars_uni(utf8_encode($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', 1, 0)."\";"); echo($iplookup); exit;
| eval("\$iplookup = \"".$templates->get('modcp_ipsearch_misc_info', 1, 0)."\";"); echo($iplookup); exit;
|
Zeile 3972 | Zeile 4055 |
---|
if($mybb->input['action'] == "banning") { if($mybb->usergroup['canbanusers'] == 0)
|
if($mybb->input['action'] == "banning") { if($mybb->usergroup['canbanusers'] == 0)
|
{
| {
|
error_no_permission();
|
error_no_permission();
|
}
| }
|
add_breadcrumb($lang->mcp_nav_banning, "modcp.php?action=banning");
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
add_breadcrumb($lang->mcp_nav_banning, "modcp.php?action=banning");
if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20;
|
}
| }
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage'];
| // Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage'];
|
Zeile 4000 | Zeile 4083 |
---|
if($mybb->get_input('page') == "last") { $page = $pages;
|
if($mybb->get_input('page') == "last") { $page = $pages;
|
}
| }
|
if($page > $pages || $page <= 0) { $page = 1;
| if($page > $pages || $page <= 0) { $page = 1;
|
Zeile 4056 | Zeile 4139 |
---|
else { $banned['reason'] = $lang->na;
|
else { $banned['reason'] = $lang->na;
|
}
| }
|
if($banned['lifted'] == 'perm' || $banned['lifted'] == '' || $banned['bantime'] == 'perm' || $banned['bantime'] == '---') {
| if($banned['lifted'] == 'perm' || $banned['lifted'] == '' || $banned['bantime'] == 'perm' || $banned['bantime'] == '---') {
|
Zeile 4074 | Zeile 4157 |
---|
$ban_remaining = "{$timeremaining} {$lang->ban_remaining}";
if($remaining <= 0)
|
$ban_remaining = "{$timeremaining} {$lang->ban_remaining}";
if($remaining <= 0)
|
{
| {
|
$banned_class = "imminent_banned"; $ban_remaining = $lang->ban_ending_imminently; }
| $banned_class = "imminent_banned"; $ban_remaining = $lang->ban_ending_imminently; }
|
Zeile 4102 | Zeile 4185 |
---|
}
if(!$bannedusers)
|
}
if(!$bannedusers)
|
{
| {
|
eval("\$bannedusers = \"".$templates->get("modcp_banning_nobanned")."\";"); }
|
eval("\$bannedusers = \"".$templates->get("modcp_banning_nobanned")."\";"); }
|
|
|
$plugins->run_hooks("modcp_banning");
eval("\$bannedpage = \"".$templates->get("modcp_banning")."\";"); output_page($bannedpage); }
|
$plugins->run_hooks("modcp_banning");
eval("\$bannedpage = \"".$templates->get("modcp_banning")."\";"); output_page($bannedpage); }
|
|
|
if($mybb->input['action'] == "liftban") { // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canbanusers'] == 0)
|
if($mybb->input['action'] == "liftban") { // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canbanusers'] == 0)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
$query = $db->simple_select("banned", "*", "uid='".$mybb->get_input('uid', MyBB::INPUT_INT)."'"); $ban = $db->fetch_array($query);
| $query = $db->simple_select("banned", "*", "uid='".$mybb->get_input('uid', MyBB::INPUT_INT)."'"); $ban = $db->fetch_array($query);
|
Zeile 4128 | Zeile 4211 |
---|
if(!$ban) { error($lang->error_invalidban);
|
if(!$ban) { error($lang->error_invalidban);
|
}
| }
|
// Permission to edit this ban? if($mybb->user['uid'] != $ban['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) {
| // Permission to edit this ban? if($mybb->user['uid'] != $ban['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) {
|
Zeile 4143 | Zeile 4226 |
---|
$updated_group = array( 'usergroup' => $ban['oldgroup'],
|
$updated_group = array( 'usergroup' => $ban['oldgroup'],
|
'additionalgroups' => $ban['oldadditionalgroups'],
| 'additionalgroups' => $db->escape_string($ban['oldadditionalgroups']),
|
'displaygroup' => $ban['olddisplaygroup'] ); $db->update_query("users", $updated_group, "uid='{$ban['uid']}'"); $db->delete_query("banned", "uid='{$ban['uid']}'");
|
'displaygroup' => $ban['olddisplaygroup'] ); $db->update_query("users", $updated_group, "uid='{$ban['uid']}'"); $db->delete_query("banned", "uid='{$ban['uid']}'");
|
$cache->update_banned();
|
|
$cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
| $cache->update_moderators(); log_moderator_action(array("uid" => $ban['uid'], "username" => $username), $lang->lifted_ban);
|
Zeile 4166 | Zeile 4248 |
---|
if($mybb->usergroup['canbanusers'] == 0) { error_no_permission();
|
if($mybb->usergroup['canbanusers'] == 0) { error_no_permission();
|
}
| }
|
// Editing an existing ban
|
// Editing an existing ban
|
| $existing_ban = false;
|
if($mybb->get_input('uid', MyBB::INPUT_INT)) { // Get the users info from their uid
| if($mybb->get_input('uid', MyBB::INPUT_INT)) { // Get the users info from their uid
|
Zeile 4180 | Zeile 4263 |
---|
"); $user = $db->fetch_array($query);
|
"); $user = $db->fetch_array($query);
|
$existing_ban = false; if($user['uid'])
| if($user)
|
{ $existing_ban = true; }
| { $existing_ban = true; }
|
Zeile 4192 | Zeile 4274 |
---|
error_no_permission(); } }
|
error_no_permission(); } }
|
| $errors = array();
|
// Creating a new ban if(!$existing_ban)
| // Creating a new ban if(!$existing_ban)
|
Zeile 4203 | Zeile 4287 |
---|
$user = get_user_by_username($mybb->input['username'], $options);
|
$user = get_user_by_username($mybb->input['username'], $options);
|
if(!$user['uid'])
| if(!$user)
|
{ $errors[] = $lang->invalid_username; }
| { $errors[] = $lang->invalid_username; }
|
Zeile 4224 | Zeile 4308 |
---|
if(empty($mybb->input['banreason'])) { $errors[] = $lang->error_nobanreason;
|
if(empty($mybb->input['banreason'])) { $errors[] = $lang->error_nobanreason;
|
}
| }
|
// Check banned group $usergroups_cache = $cache->read('usergroups');
|
// Check banned group $usergroups_cache = $cache->read('usergroups');
|
$usergroup = $usergroups_cache[$mybb->get_input('usergroup', MyBB::INPUT_INT)]; $query = $db->simple_select("usergroups", "gid", "isbannedgroup=1 AND gid='".$mybb->get_input('usergroup', MyBB::INPUT_INT)."'");
| if(isset($usergroups_cache[$mybb->get_input('usergroup', MyBB::INPUT_INT)])) { $usergroup = $usergroups_cache[$mybb->get_input('usergroup', MyBB::INPUT_INT)]; }
|
|
|
if(empty($usergroup['gid']) || empty($usergroup['isbannedgroup']))
| if(!isset($usergroup) || empty($usergroup['isbannedgroup']))
|
{ $errors[] = $lang->error_nobangroup; }
| { $errors[] = $lang->error_nobangroup; }
|
Zeile 4239 | Zeile 4325 |
---|
// If this is a new ban, we check the user isn't already part of a banned group if(!$existing_ban && $user['uid']) {
|
// If this is a new ban, we check the user isn't already part of a banned group if(!$existing_ban && $user['uid']) {
|
$query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'"); if($db->fetch_field($query, "uid"))
| $query = $db->simple_select("banned", "uid", "uid='{$user['uid']}'", array('limit' => 1)); if($db->num_rows($query) > 0)
|
{ $errors[] = $lang->error_useralreadybanned; }
| { $errors[] = $lang->error_useralreadybanned; }
|
Zeile 4285 | Zeile 4371 |
---|
'uid' => $user['uid'], 'gid' => $mybb->get_input('usergroup', MyBB::INPUT_INT), 'oldgroup' => (int)$user['usergroup'],
|
'uid' => $user['uid'], 'gid' => $mybb->get_input('usergroup', MyBB::INPUT_INT), 'oldgroup' => (int)$user['usergroup'],
|
'oldadditionalgroups' => (string)$user['additionalgroups'],
| 'oldadditionalgroups' => $db->escape_string($user['additionalgroups']),
|
'olddisplaygroup' => (int)$user['displaygroup'], 'admin' => (int)$mybb->user['uid'], 'dateline' => TIME_NOW,
| 'olddisplaygroup' => (int)$user['displaygroup'], 'admin' => (int)$mybb->user['uid'], 'dateline' => TIME_NOW,
|
Zeile 4304 | Zeile 4390 |
---|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
$cache->update_banned();
| |
// Log edit or add ban if($existing_ban)
|
// Log edit or add ban if($existing_ban)
|
{
| {
|
log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user_ban);
|
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);
|
else { log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->banned_user);
|
}
| }
|
$plugins->run_hooks("modcp_do_banuser_end");
if($existing_ban)
|
$plugins->run_hooks("modcp_do_banuser_end");
if($existing_ban)
|
{
| {
|
redirect("modcp.php?action=banning", $lang->redirect_banuser_updated); } else
|
redirect("modcp.php?action=banning", $lang->redirect_banuser_updated); } else
|
{
| {
|
redirect("modcp.php?action=banning", $lang->redirect_banuser); }
|
redirect("modcp.php?action=banning", $lang->redirect_banuser); }
|
}
| }
|
// Otherwise has errors, throw back to ban page else { $mybb->input['action'] = "banuser";
|
// Otherwise has errors, throw back to ban page else { $mybb->input['action'] = "banuser";
|
}
| }
|
}
if($mybb->input['action'] == "banuser")
| }
if($mybb->input['action'] == "banuser")
|
Zeile 4350 | Zeile 4434 |
---|
add_breadcrumb($lang->mcp_nav_editing_ban); } else
|
add_breadcrumb($lang->mcp_nav_editing_ban); } else
|
{
| {
|
add_breadcrumb($lang->mcp_nav_ban_user); }
| add_breadcrumb($lang->mcp_nav_ban_user); }
|
Zeile 4369 | Zeile 4453 |
---|
WHERE b.uid='{$mybb->input['uid']}' "); $banned = $db->fetch_array($query);
|
WHERE b.uid='{$mybb->input['uid']}' "); $banned = $db->fetch_array($query);
|
if($banned['username'])
| if(!empty($banned['username']))
|
{ $username = $banned['username'] = htmlspecialchars_uni($banned['username']); $banreason = htmlspecialchars_uni($banned['reason']);
| { $username = $banned['username'] = htmlspecialchars_uni($banned['username']); $banreason = htmlspecialchars_uni($banned['reason']);
|
Zeile 4377 | Zeile 4461 |
---|
$user = get_user($banned['uid']); $lang->ban_user = $lang->edit_ban; // Swap over lang variables eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";");
|
$user = get_user($banned['uid']); $lang->ban_user = $lang->edit_ban; // Swap over lang variables eval("\$banuser_username = \"".$templates->get("modcp_banuser_editusername")."\";");
|
} }
| } }
|
// Permission to edit this ban?
|
// Permission to edit this ban?
|
if($banned['uid'] && $mybb->user['uid'] != $banned['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1)
| if(!empty($banned) && $banned['uid'] && $mybb->user['uid'] != $banned['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 4398 | Zeile 4482 |
---|
else { $username = htmlspecialchars_uni($mybb->get_input('username'));
|
else { $username = htmlspecialchars_uni($mybb->get_input('username'));
|
}
| }
|
eval("\$banuser_username = \"".$templates->get("modcp_banuser_addusername")."\";"); }
| eval("\$banuser_username = \"".$templates->get("modcp_banuser_addusername")."\";"); }
|
Zeile 4452 | Zeile 4536 |
---|
if(isset($banned['gid']) && $banned['gid'] == $group['gid']) { $selected = " selected=\"selected\"";
|
if(isset($banned['gid']) && $banned['gid'] == $group['gid']) { $selected = " selected=\"selected\"";
|
}
| }
|
$group['title'] = htmlspecialchars_uni($group['title']); eval("\$bangroup_option .= \"".$templates->get("modcp_banuser_bangroups_group")."\";");
| $group['title'] = htmlspecialchars_uni($group['title']); eval("\$bangroup_option .= \"".$templates->get("modcp_banuser_bangroups_group")."\";");
|
Zeile 4468 | Zeile 4552 |
---|
elseif($numgroups > 1) { eval("\$bangroups = \"".$templates->get("modcp_banuser_bangroups")."\";");
|
elseif($numgroups > 1) { eval("\$bangroups = \"".$templates->get("modcp_banuser_bangroups")."\";");
|
} else {
| } else {
|
eval("\$bangroups = \"".$templates->get("modcp_banuser_bangroups_hidden")."\";"); }
| eval("\$bangroups = \"".$templates->get("modcp_banuser_bangroups_hidden")."\";"); }
|
Zeile 4497 | Zeile 4581 |
---|
verify_post_check($mybb->get_input('my_post_key'));
$plugins->run_hooks("modcp_do_modnotes_start");
|
verify_post_check($mybb->get_input('my_post_key'));
$plugins->run_hooks("modcp_do_modnotes_start");
|
|
|
// Update Moderator Notes cache $update_cache = array( "modmessage" => $mybb->get_input('modnotes')
| // Update Moderator Notes cache $update_cache = array( "modmessage" => $mybb->get_input('modnotes')
|
Zeile 4524 | Zeile 4608 |
---|
else { $bgcolor = "trow2";
|
else { $bgcolor = "trow2";
|
}
| }
|
$query = $db->query(" SELECT COUNT(aid) AS unapprovedattachments
| $query = $db->query(" SELECT COUNT(aid) AS unapprovedattachments
|
Zeile 4581 | Zeile 4665 |
---|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE p.visible='0' {$tflist} AND t.firstpost != p.pid
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT 1 "); $post = $db->fetch_array($query);
| LIMIT 1 "); $post = $db->fetch_array($query);
|
Zeile 4652 | Zeile 4736 |
---|
$where = ''; if($tflist_modlog) {
|
$where = ''; if($tflist_modlog) {
|
$where = "WHERE (t.fid <> 0 {$tflist_modlog}) OR (!l.fid)";
| $where = "WHERE (t.fid <> 0 {$tflist_modlog}) OR (l.fid <> 0)";
|
}
$query = $db->query("
| }
$query = $db->query("
|
Zeile 4701 | Zeile 4785 |
---|
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) { $data = my_unserialize($logitem['data']);
|
if(!$logitem['tsubject'] || !$logitem['fname'] || !$logitem['psubject']) { $data = my_unserialize($logitem['data']);
|
if($data['uid'])
| if(isset($data['uid']))
|
{ $information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid'])); }
|
{ $information = $lang->sprintf($lang->edited_user_info, htmlspecialchars_uni($data['username']), get_profile_link($data['uid'])); }
|
if($data['aid'])
| if(isset($data['aid']))
|
{ $data['subject'] = htmlspecialchars_uni($parser->parse_badwords($data['subject'])); $data['announcement'] = get_announcement_link($data['aid']);
| { $data['subject'] = htmlspecialchars_uni($parser->parse_badwords($data['subject'])); $data['announcement'] = get_announcement_link($data['aid']);
|
Zeile 4820 | Zeile 4904 |
---|
eval("\$bannedusers = \"".$templates->get("modcp_nobanned")."\";"); }
|
eval("\$bannedusers = \"".$templates->get("modcp_nobanned")."\";"); }
|
$modnotes = $cache->read("modnotes"); $modnotes = htmlspecialchars_uni($modnotes['modmessage']);
| $modnotes = ''; $modnotes_cache = $cache->read("modnotes"); if($modnotes_cache !== false) { $modnotes = htmlspecialchars_uni($modnotes_cache['modmessage']); }
|
$plugins->run_hooks("modcp_end");
| $plugins->run_hooks("modcp_end");
|