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 247 | Zeile 221 |
---|
if($mybb->usergroup['canbanusers'] == 1) { eval("\$nav_banning = \"".$templates->get("modcp_nav_banning")."\";");
|
if($mybb->usergroup['canbanusers'] == 1) { eval("\$nav_banning = \"".$templates->get("modcp_nav_banning")."\";");
|
}
| }
|
if($mybb->usergroup['canviewwarnlogs'] == 1)
|
if($mybb->usergroup['canviewwarnlogs'] == 1)
|
{
| {
|
eval("\$nav_warninglogs = \"".$templates->get("modcp_nav_warninglogs")."\";"); }
if($mybb->usergroup['canuseipsearch'] == 1)
|
eval("\$nav_warninglogs = \"".$templates->get("modcp_nav_warninglogs")."\";"); }
if($mybb->usergroup['canuseipsearch'] == 1)
|
{
| {
|
eval("\$nav_ipsearch = \"".$templates->get("modcp_nav_ipsearch")."\";"); }
|
eval("\$nav_ipsearch = \"".$templates->get("modcp_nav_ipsearch")."\";"); }
|
|
|
$plugins->run_hooks("modcp_nav");
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
$plugins->run_hooks("modcp_nav");
if(!empty($nav_announcements) || !empty($nav_modqueue) || !empty($nav_reportcenter) || !empty($nav_modlogs)) {
|
| $expaltext = (in_array("modcpforums", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";");
|
eval("\$modcp_nav_forums_posts = \"".$templates->get("modcp_nav_forums_posts")."\";");
|
}
| }
|
if(!empty($nav_editprofile) || !empty($nav_banning) || !empty($nav_warninglogs) || !empty($nav_ipsearch)) {
|
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")."\";"); }
|
Zeile 291 | Zeile 267 |
---|
}
$message = $lang->redirect_reportsmarked;
|
}
$message = $lang->redirect_reportsmarked;
|
|
|
if(isset($mybb->cookies['inlinereports'])) { if($mybb->cookies['inlinereports'] == '|ALL|') {
| if(isset($mybb->cookies['inlinereports'])) { if($mybb->cookies['inlinereports'] == '|ALL|') {
|
Zeile 309 | Zeile 285 |
---|
{ $inlinereportlist = explode("|", $mybb->cookies['inlinereports']); $reports = array_map("intval", $inlinereportlist);
|
{ $inlinereportlist = explode("|", $mybb->cookies['inlinereports']); $reports = array_map("intval", $inlinereportlist);
|
|
|
if(!count($reports)) { error($lang->error_noselected_reports); }
|
if(!count($reports)) { error($lang->error_noselected_reports); }
|
|
|
$rids = implode("','", $reports);
$sql = "rid IN ('0','{$rids}')";
|
$rids = implode("','", $reports);
$sql = "rid IN ('0','{$rids}')";
|
} } else
| } } else
|
{ $mybb->input['reports'] = array_map("intval", $mybb->input['reports']); $rids = implode("','", $mybb->input['reports']);
$sql = "rid IN ('0','{$rids}')";
|
{ $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");
|
$plugins->run_hooks("modcp_do_reports");
|
|
|
$db->update_query("reportedcontent", array('reportstatus' => 1), "{$sql}{$flist_reports}"); $cache->update_reportedcontent();
my_unsetcookie('inlinereports'); my_unsetcookie('inlinereports_removed');
|
$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}", $message); }
if($mybb->input['action'] == "reports") { if($mybb->usergroup['canmanagereportedcontent'] == 0)
|
redirect("modcp.php?action=reports&page={$page}", $message); }
if($mybb->input['action'] == "reports") { if($mybb->usergroup['canmanagereportedcontent'] == 0)
|
{
| {
|
error_no_permission(); }
| error_no_permission(); }
|
Zeile 371 | Zeile 347 |
---|
else { $query = $db->simple_select('reportedcontent', 'id3', "reportstatus='0' AND (type = 'post' OR type = '')");
|
else { $query = $db->simple_select('reportedcontent', 'id3', "reportstatus='0' AND (type = 'post' OR type = '')");
|
|
|
$report_count = 0; while($fid = $db->fetch_field($query, 'id3')) {
| $report_count = 0; while($fid = $db->fetch_field($query, 'id3')) {
|
Zeile 390 | Zeile 366 |
---|
$pages = ceil($pages);
if($page > $pages || $page <= 0)
|
$pages = ceil($pages);
if($page > $pages || $page <= 0)
|
{ $page = 1; }
| { $page = 1; }
|
if($page && $page > 0) { $start = ($page-1) * $perpage; } else
|
if($page && $page > 0) { $start = ($page-1) * $perpage; } else
|
{
| {
|
$start = 0; $page = 1; }
| $start = 0; $page = 1; }
|
Zeile 414 | 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 530 | Zeile 508 |
---|
$plugins->run_hooks('modcp_reports_intermediate');
|
$plugins->run_hooks('modcp_reports_intermediate');
|
$inlinecount = 0;
| |
// Now that we have all of the information needed, display the reports foreach($reportcache as $report) {
| // Now that we have all of the information needed, display the reports foreach($reportcache as $report) {
|
Zeile 540 | Zeile 517 |
---|
{ // Assume a post $report['type'] = 'post';
|
{ // Assume a post $report['type'] = 'post';
|
}
| }
|
// Report Information $report_data = array();
| // Report Information $report_data = array();
|
Zeile 686 | Zeile 663 |
---|
else { $page = (int)$result / $perpage + 1;
|
else { $page = (int)$result / $perpage + 1;
|
}
| }
|
} $postcount = (int)$report_count; $pages = $postcount / $perpage;
| } $postcount = (int)$report_count; $pages = $postcount / $perpage;
|
Zeile 908 | Zeile 885 |
---|
{ $start = 0; $page = 1;
|
{ $start = 0; $page = 1;
|
}
| }
|
$page_url = 'modcp.php?action=modlogs&perpage='.$perpage; foreach(array('uid', 'fid') as $field) {
| $page_url = 'modcp.php?action=modlogs&perpage='.$perpage; foreach(array('uid', 'fid') as $field) {
|
Zeile 1048 | Zeile 1025 |
---|
}
if($mybb->input['action'] == "do_delete_announcement")
|
}
if($mybb->input['action'] == "do_delete_announcement")
|
{ verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0) { error_no_permission(); }
$aid = $mybb->get_input('aid'); $query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'"); $announcement = $db->fetch_array($query);
if(!$announcement) { error($lang->error_invalid_announcement); } 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(); }
| { verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0) { error_no_permission(); }
$aid = $mybb->get_input('aid'); $query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'"); $announcement = $db->fetch_array($query);
if(!$announcement) { error($lang->error_invalid_announcement); } 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(); }
|
$plugins->run_hooks("modcp_do_delete_announcement");
|
$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);
|
$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);
|
}
| }
|
if($mybb->input['action'] == "delete_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
| if($mybb->input['action'] == "delete_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
|
Zeile 1086 | Zeile 1063 |
---|
}
$aid = $mybb->get_input('aid');
|
}
$aid = $mybb->get_input('aid');
|
$query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'");
| $query = $db->simple_select("announcements", "aid, subject, fid", "aid='{$aid}'");
|
$announcement = $db->fetch_array($query); $announcement['subject'] = htmlspecialchars_uni($parser->parse_badwords($announcement['subject']));
|
$announcement = $db->fetch_array($query); $announcement['subject'] = htmlspecialchars_uni($parser->parse_badwords($announcement['subject']));
|
|
|
if(!$announcement) { error($lang->error_invalid_announcement);
|
if(!$announcement) { error($lang->error_invalid_announcement);
|
}
| }
|
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();
| 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();
|
Zeile 1112 | Zeile 1089 |
---|
verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0)
|
verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
$announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT); if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
| $announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT); if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
|
Zeile 1132 | Zeile 1109 |
---|
$mybb->input['message'] = $mybb->get_input('message'); if(!trim($mybb->input['message']))
|
$mybb->input['message'] = $mybb->get_input('message'); if(!trim($mybb->input['message']))
|
{
| {
|
$errors[] = $lang->error_missing_message; }
| $errors[] = $lang->error_missing_message; }
|
Zeile 1187 | Zeile 1164 |
---|
$mybb->input['endtime_month'] = '01'; } else
|
$mybb->input['endtime_month'] = '01'; } else
|
{
| {
|
$mybb->input['endtime_month'] = $mybb->get_input('endtime_month'); if(!in_array($mybb->input['endtime_month'], $months)) {
| $mybb->input['endtime_month'] = $mybb->get_input('endtime_month'); if(!in_array($mybb->input['endtime_month'], $months)) {
|
Zeile 1206 | Zeile 1183 |
---|
}
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
|
}
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1)
|
{
| {
|
$allowhtml = 1;
|
$allowhtml = 1;
|
}
| }
|
else
|
else
|
{
| {
|
$allowhtml = 0;
|
$allowhtml = 0;
|
}
| }
|
if($mybb->get_input('allowmycode', MyBB::INPUT_INT) == 1) { $allowmycode = 1;
|
if($mybb->get_input('allowmycode', MyBB::INPUT_INT) == 1) { $allowmycode = 1;
|
} else {
| } else {
|
$allowmycode = 0;
|
$allowmycode = 0;
|
}
| }
|
if($mybb->get_input('allowsmilies', MyBB::INPUT_INT) == 1) { $allowsmilies = 1;
|
if($mybb->get_input('allowsmilies', MyBB::INPUT_INT) == 1) { $allowsmilies = 1;
|
} else
| } else
|
{ $allowsmilies = 0; }
| { $allowsmilies = 0; }
|
Zeile 1253 | Zeile 1230 |
---|
'allowsmilies' => $allowsmilies ); $aid = $db->insert_query("announcements", $insert_announcement);
|
'allowsmilies' => $allowsmilies ); $aid = $db->insert_query("announcements", $insert_announcement);
|
|
|
log_moderator_action(array("aid" => $aid, "subject" => $mybb->input['title']), $lang->announcement_added);
$plugins->run_hooks("modcp_do_new_announcement_end");
| log_moderator_action(array("aid" => $aid, "subject" => $mybb->input['title']), $lang->announcement_added);
$plugins->run_hooks("modcp_do_new_announcement_end");
|
Zeile 1271 | Zeile 1248 |
---|
if($mybb->input['action'] == "new_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
|
if($mybb->input['action'] == "new_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
|
{
| {
|
error_no_permission(); }
|
error_no_permission(); }
|
|
|
add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
|
add_breadcrumb($lang->mcp_nav_announcements, "modcp.php?action=announcements"); add_breadcrumb($lang->add_announcement, "modcp.php?action=new_announcements");
|
|
|
$announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT);
if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
|
$announcement_fid = $mybb->get_input('fid', MyBB::INPUT_INT);
if(($mybb->usergroup['issupermod'] != 1 && $announcement_fid == -1) || ($announcement_fid != -1 && !is_moderator($announcement_fid, "canmanageannouncements")) || ($unviewableforums && in_array($announcement_fid, $unviewableforums)))
|
{ error_no_permission();
| { error_no_permission();
|
}
// Deal with inline errors if(!empty($errors) || isset($preview))
|
}
// Deal with inline errors if(!empty($errors) || isset($preview))
|
{
| {
|
if(!empty($errors))
|
if(!empty($errors))
|
{
| {
|
$errors = inline_error($errors);
|
$errors = inline_error($errors);
|
} else {
| } else {
|
$errors = ''; }
| $errors = ''; }
|
Zeile 1312 | Zeile 1289 |
---|
$enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = $mybb->get_input('endtime_day', MyBB::INPUT_INT); $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
$enddateyear = htmlspecialchars_uni($mybb->input['endtime_year']); $endday = $mybb->get_input('endtime_day', MyBB::INPUT_INT); $endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
|
}
| }
|
else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
| else { $localized_time = TIME_NOW + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
|
Zeile 1332 | Zeile 1309 |
---|
);
$enddateyear = $startdateyear+1;
|
);
$enddateyear = $startdateyear+1;
|
}
// Generate form elements $startdateday = $enddateday = ''; for($day = 1; $day <= 31; ++$day) { if($startday == $day) { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
if($endday == $day) { $selected = " selected=\"selected\""; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else { $selected = ''; eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";");
| }
// 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")."\";");
|
} }
| } }
|
Zeile 1385 | Zeile 1362 |
---|
if($announcement['allowhtml']) { $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 { $html_sel['no'] = ' checked="checked"'; }
eval("\$allow_html = \"".$templates->get("modcp_announcements_allowhtml")."\";");
|
} else {
| } else {
|
$allow_html = ''; }
| $allow_html = ''; }
|
Zeile 1418 | Zeile 1395 |
---|
$end_type_sel = array('infinite' => '', 'finite' => ''); if(!isset($mybb->input['endtime_type']) || $mybb->input['endtime_type'] == 2)
|
$end_type_sel = array('infinite' => '', 'finite' => ''); if(!isset($mybb->input['endtime_type']) || $mybb->input['endtime_type'] == 2)
|
{ $end_type_sel['infinite'] = ' checked="checked"'; } else { $end_type_sel['finite'] = ' checked="checked"'; }
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
if(isset($preview)) {
| { $end_type_sel['infinite'] = ' checked="checked"'; } else { $end_type_sel['finite'] = ' checked="checked"'; }
// MyCode editor $codebuttons = build_mycode_inserter(); $smilieinserter = build_clickable_smilies();
if(isset($preview)) {
|
$announcementarray = array( 'aid' => 0, 'fid' => $announcement_fid,
| $announcementarray = array( 'aid' => 0, 'fid' => $announcement_fid,
|
Zeile 1449 | Zeile 1426 |
---|
foreach($array as $key => $element) { $announcementarray[$key] = $element;
|
foreach($array as $key => $element) { $announcementarray[$key] = $element;
|
}
| }
|
// Gather usergroup data from the cache // Field => Array Key $data_key = array(
| // Gather usergroup data from the cache // Field => Array Key $data_key = array(
|
Zeile 1475 | Zeile 1452 |
---|
else { $preview = '';
|
else { $preview = '';
|
}
$plugins->run_hooks("modcp_new_announcement");
| }
$plugins->run_hooks("modcp_new_announcement");
|
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";"); output_page($announcements); }
|
eval("\$announcements = \"".$templates->get("modcp_announcements_new")."\";"); output_page($announcements); }
|
|
|
if($mybb->input['action'] == "do_edit_announcement") { verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0)
|
if($mybb->input['action'] == "do_edit_announcement") { verify_post_check($mybb->get_input('my_post_key'));
if($mybb->usergroup['canmanageannounce'] == 0)
|
{
| {
|
error_no_permission(); }
| error_no_permission(); }
|
Zeile 1504 | 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))) { error_no_permission();
| 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();
|
}
|
}
|
|
|
$errors = array();
// Basic error checking
| $errors = array();
// Basic error checking
|
Zeile 1516 | Zeile 1493 |
---|
if(!trim($mybb->input['title'])) { $errors[] = $lang->error_missing_title;
|
if(!trim($mybb->input['title'])) { $errors[] = $lang->error_missing_title;
|
}
| }
|
$mybb->input['message'] = $mybb->get_input('message'); if(!trim($mybb->input['message']))
| $mybb->input['message'] = $mybb->get_input('message'); if(!trim($mybb->input['message']))
|
Zeile 1562 | Zeile 1539 |
---|
if(!checkdate($mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT)) || $startdate < 0 || $startdate == false) { $errors[] = $lang->error_invalid_start_date;
|
if(!checkdate($mybb->get_input('starttime_month', MyBB::INPUT_INT), $mybb->get_input('starttime_day', MyBB::INPUT_INT), $mybb->get_input('starttime_year', MyBB::INPUT_INT)) || $startdate < 0 || $startdate == false) { $errors[] = $lang->error_invalid_start_date;
|
}
| }
|
if($mybb->get_input('endtime_type', MyBB::INPUT_INT) == "2") {
| if($mybb->get_input('endtime_type', MyBB::INPUT_INT) == "2") {
|
Zeile 1578 | Zeile 1555 |
---|
} $enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, $mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) - $localized_time_offset; if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) || $enddate < 0 || $enddate == false)
|
} $enddate = gmmktime((int)$enddate[0], (int)$enddate[1], 0, $mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) - $localized_time_offset; if(!checkdate($mybb->get_input('endtime_month', MyBB::INPUT_INT), $mybb->get_input('endtime_day', MyBB::INPUT_INT), $mybb->get_input('endtime_year', MyBB::INPUT_INT)) || $enddate < 0 || $enddate == false)
|
{ $errors[] = $lang->error_invalid_end_date; }
| { $errors[] = $lang->error_invalid_end_date; }
|
elseif($enddate <= $startdate) { $errors[] = $lang->error_end_before_start;
| elseif($enddate <= $startdate) { $errors[] = $lang->error_end_before_start;
|
Zeile 1590 | Zeile 1567 |
---|
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1) { $allowhtml = 1;
|
if($mybb->settings['announcementshtml'] && $mybb->get_input('allowhtml', MyBB::INPUT_INT) == 1) { $allowhtml = 1;
|
} else {
| } else {
|
$allowhtml = 0;
|
$allowhtml = 0;
|
}
| }
|
if($mybb->get_input('allowmycode', MyBB::INPUT_INT) == 1) { $allowmycode = 1;
|
if($mybb->get_input('allowmycode', MyBB::INPUT_INT) == 1) { $allowmycode = 1;
|
} else
| } else
|
{ $allowmycode = 0; }
| { $allowmycode = 0; }
|
Zeile 1618 | Zeile 1595 |
---|
if(!$errors) { if(isset($mybb->input['preview']))
|
if(!$errors) { if(isset($mybb->input['preview']))
|
{
| {
|
$preview = array(); $mybb->input['action'] = 'edit_announcement'; }
| $preview = array(); $mybb->input['action'] = 'edit_announcement'; }
|
Zeile 1637 | Zeile 1614 |
---|
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
log_moderator_action(array("aid" => $announcement['aid'], "subject" => $mybb->input['title']), $lang->announcement_edited);
|
$db->update_query("announcements", $update_announcement, "aid='{$aid}'");
log_moderator_action(array("aid" => $announcement['aid'], "subject" => $mybb->input['title']), $lang->announcement_edited);
|
|
|
$plugins->run_hooks("modcp_do_edit_announcement_end");
$cache->update_forumsdisplay();
| $plugins->run_hooks("modcp_do_edit_announcement_end");
$cache->update_forumsdisplay();
|
Zeile 1653 | Zeile 1630 |
---|
if($mybb->input['action'] == "edit_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
|
if($mybb->input['action'] == "edit_announcement") { if($mybb->usergroup['canmanageannounce'] == 0)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
$aid = $mybb->get_input('aid', MyBB::INPUT_INT);
| $aid = $mybb->get_input('aid', MyBB::INPUT_INT);
|
Zeile 1674 | Zeile 1651 |
---|
error($lang->error_invalid_announcement); } if(($mybb->usergroup['issupermod'] != 1 && $announcement['fid'] == -1) || ($announcement['fid'] != -1 && !is_moderator($announcement['fid'], "canmanageannouncements")) || ($unviewableforums && in_array($announcement['fid'], $unviewableforums)))
|
error($lang->error_invalid_announcement); } 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();
|
}
| }
|
if(!$announcement['startdate']) { // No start date? Make it now. $announcement['startdate'] = TIME_NOW;
|
if(!$announcement['startdate']) { // No start date? Make it now. $announcement['startdate'] = TIME_NOW;
|
}
| }
|
$makeshift_end = false; if(!$announcement['enddate']) {
| $makeshift_end = false; if(!$announcement['enddate']) {
|
Zeile 1692 | Zeile 1669 |
---|
if($announcement['startdate']) { $makeshift_time = $announcement['startdate'];
|
if($announcement['startdate']) { $makeshift_time = $announcement['startdate'];
|
}
| }
|
// No end date? Make it a year from now. $announcement['enddate'] = $makeshift_time + (60 * 60 * 24 * 366);
| // No end date? Make it a year from now. $announcement['enddate'] = $makeshift_time + (60 * 60 * 24 * 366);
|
Zeile 1702 | Zeile 1679 |
---|
if(!empty($errors) || isset($preview)) { if(!empty($errors))
|
if(!empty($errors) || isset($preview)) { if(!empty($errors))
|
{
| {
|
$errors = inline_error($errors); } else
| $errors = inline_error($errors); } else
|
Zeile 1727 | Zeile 1704 |
---|
$endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
$errored = true;
|
$endtime_time = htmlspecialchars_uni($mybb->input['endtime_time']);
$errored = true;
|
} else {
| } else {
|
$localized_time_startdate = $announcement['startdate'] + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600; $localized_time_enddate = $announcement['enddate'] + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
| $localized_time_startdate = $announcement['startdate'] + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600; $localized_time_enddate = $announcement['enddate'] + (float)$mybb->user['timezone']*3600 + $mybb->user['dst']*3600;
|
Zeile 1753 | Zeile 1730 |
---|
for($day = 1; $day <= 31; ++$day) { if($startday == $day)
|
for($day = 1; $day <= 31; ++$day) { if($startday == $day)
|
{ $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else {
| { $selected = " selected=\"selected\""; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); } else {
|
$selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
| $selected = ''; eval("\$startdateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
|
Zeile 1766 | Zeile 1743 |
---|
if($endday == $day) { $selected = " selected=\"selected\"";
|
if($endday == $day) { $selected = " selected=\"selected\"";
|
eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
| eval("\$enddateday .= \"".$templates->get("modcp_announcements_day")."\";"); }
|
else { $selected = '';
| else { $selected = '';
|
Zeile 1803 | Zeile 1780 |
---|
else { $html_sel['no'] = ' checked="checked"';
|
else { $html_sel['no'] = ' checked="checked"';
|
}
| }
|
eval("\$allow_html = \"".$templates->get("modcp_announcements_allowhtml")."\";"); } else
| eval("\$allow_html = \"".$templates->get("modcp_announcements_allowhtml")."\";"); } else
|
Zeile 1832 | Zeile 1809 |
---|
$end_type_sel = array('infinite' => '', 'finite' => ''); if(($errored && $mybb->get_input('endtime_type', MyBB::INPUT_INT) == 2) || (!$errored && (int)$announcement['enddate'] == 0) || $makeshift_end == true)
|
$end_type_sel = array('infinite' => '', 'finite' => ''); if(($errored && $mybb->get_input('endtime_type', MyBB::INPUT_INT) == 2) || (!$errored && (int)$announcement['enddate'] == 0) || $makeshift_end == true)
|
{
| {
|
$end_type_sel['infinite'] = ' checked="checked"'; } else
| $end_type_sel['infinite'] = ' checked="checked"'; } else
|
Zeile 1878 | Zeile 1855 |
---|
);
foreach($data_key as $field => $key)
|
);
foreach($data_key as $field => $key)
|
{
| {
|
$announcementarray[$key] = $groupscache[$announcementarray['usergroup']][$field]; }
| $announcementarray[$key] = $groupscache[$announcementarray['usergroup']][$field]; }
|
Zeile 1915 | Zeile 1892 |
---|
$query = $db->simple_select("announcements", "aid, fid, subject, enddate"); $announcements = $global_announcements = array(); while($announcement = $db->fetch_array($query))
|
$query = $db->simple_select("announcements", "aid, fid, subject, enddate"); $announcements = $global_announcements = array(); while($announcement = $db->fetch_array($query))
|
{
| {
|
if($announcement['fid'] == -1) { $global_announcements[$announcement['aid']] = $announcement;
| if($announcement['fid'] == -1) { $global_announcements[$announcement['aid']] = $announcement;
|
Zeile 1933 | 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")."\";"); } else
| eval("\$icon = \"".$templates->get("modcp_announcements_announcement_expired")."\";"); } else
|
Zeile 1953 | Zeile 1930 |
---|
eval("\$announcements_global = \"".$templates->get("modcp_no_announcements_global")."\";"); } eval("\$announcements_global = \"".$templates->get("modcp_announcements_global")."\";");
|
eval("\$announcements_global = \"".$templates->get("modcp_no_announcements_global")."\";"); } eval("\$announcements_global = \"".$templates->get("modcp_announcements_global")."\";");
|
}
| }
|
$announcements_forum = ''; fetch_forum_announcements();
| $announcements_forum = ''; fetch_forum_announcements();
|
Zeile 2101 | Zeile 2078 |
---|
} $action = $mybb->input['attachments'][$attachment['aid']]; if($action == "approve")
|
} $action = $mybb->input['attachments'][$attachment['aid']]; if($action == "approve")
|
{
| {
|
$db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'"); } else if($action == "delete")
| $db->update_query("attachments", array("visible" => 1), "aid='{$attachment['aid']}'"); } else if($action == "delete")
|
Zeile 2113 | Zeile 2090 |
---|
$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")
| }
if($mybb->input['action'] == "modqueue")
|
Zeile 2126 | Zeile 2103 |
---|
}
if($nummodqueuethreads == 0 && $nummodqueueposts == 0 && $nummodqueueattach == 0 && $mybb->usergroup['issupermod'] != 1)
|
}
if($nummodqueuethreads == 0 && $nummodqueueposts == 0 && $nummodqueueattach == 0 && $mybb->usergroup['issupermod'] != 1)
|
{
| {
|
error($lang->you_cannot_use_mod_queue); }
| error($lang->you_cannot_use_mod_queue); }
|
Zeile 2137 | Zeile 2114 |
---|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
if($nummodqueuethreads == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_threads);
|
}
$forum_cache = $cache->read("forums");
| }
$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 2152 | Zeile 2129 |
---|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$perpage = $mybb->settings['threadsperpage']; $pages = $unapproved_threads / $perpage;
|
$pages = ceil($pages);
if($mybb->get_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_threads, $perpage, $page, "modcp.php?action=modqueue&type=threads");
| $pages = ceil($pages);
if($mybb->get_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_threads, $perpage, $page, "modcp.php?action=modqueue&type=threads");
|
$query = $db->query(" 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
| $query = $db->query(" 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
|
Zeile 2194 | Zeile 2171 |
---|
$forum_link = get_forum_link($thread['fid']); $forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date('relative', $thread['dateline']);
|
$forum_link = get_forum_link($thread['fid']); $forum_name = $forum_cache[$thread['fid']]['name']; $threaddate = my_date('relative', $thread['dateline']);
|
|
|
if($thread['username'] == "") { if($thread['threadusername'] != "")
| if($thread['username'] == "") { if($thread['threadusername'] != "")
|
Zeile 2211 | Zeile 2188 |
---|
{ $thread['username'] = htmlspecialchars_uni($thread['username']); $profile_link = build_profile_link($thread['username'], $thread['uid']);
|
{ $thread['username'] = htmlspecialchars_uni($thread['username']); $profile_link = build_profile_link($thread['username'], $thread['uid']);
|
}
| }
|
$thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage'])); eval("\$forum = \"".$templates->get("modcp_modqueue_link_forum")."\";"); eval("\$threads .= \"".$templates->get("modcp_modqueue_threads_thread")."\";");
|
$thread['postmessage'] = nl2br(htmlspecialchars_uni($thread['postmessage'])); eval("\$forum = \"".$templates->get("modcp_modqueue_link_forum")."\";"); eval("\$threads .= \"".$templates->get("modcp_modqueue_threads_thread")."\";");
|
}
| }
|
if(!$threads && $mybb->input['type'] == "threads") { eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";");
|
if(!$threads && $mybb->input['type'] == "threads") { eval("\$threads = \"".$templates->get("modcp_modqueue_threads_empty")."\";");
|
}
| }
|
if($threads) { add_breadcrumb($lang->mcp_nav_modqueue_threads, "modcp.php?action=modqueue&type=threads");
|
if($threads) { add_breadcrumb($lang->mcp_nav_modqueue_threads, "modcp.php?action=modqueue&type=threads");
|
|
|
$plugins->run_hooks("modcp_modqueue_threads_end");
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
|
$plugins->run_hooks("modcp_modqueue_threads_end");
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
|
{ $navsep = " | ";
| { $navsep = " | ";
|
eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";");
|
eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";");
|
}
| }
|
if($mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1)) { $navsep = " | "; eval("\$attachment_link = \"".$templates->get("modcp_modqueue_attachment_link")."\";"); }
|
if($mybb->settings['enableattachments'] == 1 && ($nummodqueueattach > 0 || $mybb->usergroup['issupermod'] == 1)) { $navsep = " | "; eval("\$attachment_link = \"".$templates->get("modcp_modqueue_attachment_link")."\";"); }
|
|
|
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 2249 | Zeile 2226 |
---|
}
if($mybb->input['type'] == "posts" || (!$mybb->input['type'] && !$threadqueue && ($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);
| if($nummodqueueposts == 0 && $mybb->usergroup['issupermod'] != 1) { error($lang->you_cannot_moderate_posts);
|
Zeile 2267 | Zeile 2244 |
---|
// 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); }
|
|
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_posts / $perpage; $pages = ceil($pages);
if($mybb->get_input('page') == "last")
|
$perpage = $mybb->settings['postsperpage']; $pages = $unapproved_posts / $perpage; $pages = ceil($pages);
if($mybb->get_input('page') == "last")
|
{
| {
|
$page = $pages; }
| $page = $pages; }
|
Zeile 2303 | Zeile 2280 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) WHERE p.visible='0' {$tflist_queue_posts} AND t.firstpost != p.pid
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
LIMIT {$start}, {$perpage} "); $posts = '';
| LIMIT {$start}, {$perpage} "); $posts = '';
|
Zeile 2324 | Zeile 2301 |
---|
{ $post['postusername'] = htmlspecialchars_uni($post['postusername']); $profile_link = $post['postusername'];
|
{ $post['postusername'] = htmlspecialchars_uni($post['postusername']); $profile_link = $post['postusername'];
|
}
| }
|
else { $profile_link = $lang->guest;
| else { $profile_link = $lang->guest;
|
Zeile 2473 | Zeile 2450 |
---|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";");
|
if($nummodqueuethreads > 0 || $mybb->usergroup['issupermod'] == 1) { eval("\$thread_link = \"".$templates->get("modcp_modqueue_thread_link")."\";");
|
$navsep = " | "; }
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
| $navsep = " | "; }
if($nummodqueueposts > 0 || $mybb->usergroup['issupermod'] == 1)
|
{ eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); $navsep = " | ";
| { eval("\$post_link = \"".$templates->get("modcp_modqueue_post_link")."\";"); $navsep = " | ";
|
Zeile 2486 | Zeile 2463 |
---|
eval("\$attachmentqueue = \"".$templates->get("modcp_modqueue_attachments")."\";"); output_page($attachmentqueue); }
|
eval("\$attachmentqueue = \"".$templates->get("modcp_modqueue_attachments")."\";"); output_page($attachmentqueue); }
|
}
| }
|
// Still nothing? All queues are empty! :-D if(!$threadqueue && !$postqueue && !$attachmentqueue)
| // Still nothing? All queues are empty! :-D if(!$threadqueue && !$postqueue && !$attachmentqueue)
|
Zeile 2503 | Zeile 2480 |
---|
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);
|
$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'])) {
| // Check if the current user has permission to edit this user if(!modcp_can_manage_user($user['uid'])) {
|
Zeile 2552 | Zeile 2529 |
---|
}
$returndate = "{$return_day}-{$return_month}-{$return_year}";
|
}
$returndate = "{$return_day}-{$return_month}-{$return_year}";
|
}
| }
|
else { $returndate = "";
| else { $returndate = "";
|
Zeile 2585 | Zeile 2562 |
---|
"profile_fields_editable" => true, "website" => $mybb->get_input('website'), "icq" => $mybb->get_input('icq'),
|
"profile_fields_editable" => true, "website" => $mybb->get_input('website'), "icq" => $mybb->get_input('icq'),
|
"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), "month" => $mybb->get_input('birthday_month', MyBB::INPUT_INT),
| $updated_user['birthday'] = array( "day" => $mybb->get_input('birthday_day', MyBB::INPUT_INT), "month" => $mybb->get_input('birthday_month', MyBB::INPUT_INT),
|
Zeile 2607 | Zeile 2582 |
---|
else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
|
else if(!empty($mybb->input['reverttitle'])) { $updated_user['usertitle'] = '';
|
}
| }
|
if(!empty($mybb->input['remove_avatar'])) { $updated_user['avatarurl'] = '';
| if(!empty($mybb->input['remove_avatar'])) { $updated_user['avatarurl'] = '';
|
Zeile 2616 | Zeile 2591 |
---|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
// Set the data of the user in the datahandler. $userhandler->set_data($updated_user);
|
$errors = '';
| $errors = array();
|
// Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
| // Validate the user and get any errors that might have occurred. if(!$userhandler->validate_user())
|
Zeile 2665 | Zeile 2640 |
---|
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 2688 | Zeile 2663 |
---|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
$string = $option['action']."_error"; $errors[] = $lang->$string; }
|
if(!is_array($errors))
| else
|
{ $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
| { $suspend_length = fetch_time_length((int)$mybb->input[$option['time']], $mybb->input[$option['period']]);
|
Zeile 2700 | Zeile 2674 |
---|
{ // Permanent ban on action $extra_user_updates[$option['update_length']] = 0;
|
{ // Permanent ban on action $extra_user_updates[$option['update_length']] = 0;
|
}
| }
|
elseif($suspend_length && $suspend_length != "-1") { // Temporary ban on action
|
elseif($suspend_length && $suspend_length != "-1") { // Temporary ban on action
|
$extra_user_updates[$option['update_length']] = TIME_NOW + $suspend_length; } }
| $extra_user_updates[$option['update_length']] = TIME_NOW + $suspend_length; } }
|
elseif(!$user[$option['update_field']]) { // New suspension for this user... bad user!
| elseif(!$user[$option['update_field']]) { // New suspension for this user... bad user!
|
Zeile 2714 | Zeile 2688 |
---|
if($suspend_length == "-1") { $extra_user_updates[$option['update_length']] = 0;
|
if($suspend_length == "-1") { $extra_user_updates[$option['update_length']] = 0;
|
}
| }
|
else { $extra_user_updates[$option['update_length']] = TIME_NOW + $suspend_length; } } }
|
else { $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
|
// 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"; } else
| $mybb->input['action'] = "editprofile"; } else
|
Zeile 2748 | Zeile 2722 |
---|
log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user);
$plugins->run_hooks("modcp_do_editprofile_end");
|
log_moderator_action(array("uid" => $user['uid'], "username" => $user['username']), $lang->edited_user);
$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 2773 | Zeile 2747 |
---|
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']))
| }
if(!my_validate_url($user['website']))
|
Zeile 2805 | Zeile 2795 |
---|
}
// Sanitize all input
|
}
// 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', 'icq', '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 2832 | Zeile 2814 |
---|
{ if($title['posts'] <= $user['postnum']) {
|
{ if($title['posts'] <= $user['postnum']) {
|
$defaulttitle = $title['title'];
| $defaulttitle = htmlspecialchars_uni($title['title']);
|
break; } }
| break; } }
|
Zeile 2938 | Zeile 2920 |
---|
$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 = ''; $mybb->input['profile_fields'] = $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY);
|
$requiredfields = ''; $customfields = ''; $mybb->input['profile_fields'] = $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY);
|
|
|
$pfcache = $cache->read('profilefields');
|
$pfcache = $cache->read('profilefields');
|
|
|
if(is_array($pfcache)) { foreach($pfcache as $profilefield)
| if(is_array($pfcache)) { foreach($pfcache as $profilefield)
|
Zeile 2964 | Zeile 2950 |
---|
} $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]; }
| { $userfield = $user_fields[$field]; }
|
Zeile 2983 | Zeile 2969 |
---|
else { $useropts = explode("\n", $userfield);
|
else { $useropts = explode("\n", $userfield);
|
}
| }
|
if(is_array($useropts)) { foreach($useropts as $key => $val)
| if(is_array($useropts)) { foreach($useropts as $key => $val)
|
Zeile 3010 | Zeile 2996 |
---|
if(!$profilefield['length']) { $profilefield['length'] = 3;
|
if(!$profilefield['length']) { $profilefield['length'] = 3;
|
}
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";"); }
| }
eval("\$code = \"".$templates->get("usercp_profile_profilefields_multiselect")."\";"); }
|
} elseif($type == "select") {
| } elseif($type == "select") {
|
Zeile 3041 | Zeile 3027 |
---|
} } elseif($type == "radio")
|
} } elseif($type == "radio")
|
{
| {
|
$expoptions = explode("\n", $options); if(is_array($expoptions)) {
| $expoptions = explode("\n", $options); if(is_array($expoptions)) {
|
Zeile 3049 | Zeile 3035 |
---|
{ $checked = ""; if($val == $userfield)
|
{ $checked = ""; if($val == $userfield)
|
{ $checked = " checked=\"checked\"";
| { $checked = " checked=\"checked\"";
|
}
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_radio")."\";");
| }
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_radio")."\";");
|
Zeile 3060 | Zeile 3046 |
---|
elseif($type == "checkbox") { if($errors)
|
elseif($type == "checkbox") { if($errors)
|
{
| {
|
$useropts = $userfield; } else
| $useropts = $userfield; } else
|
Zeile 3086 | Zeile 3072 |
---|
}
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_checkbox")."\";");
|
}
eval("\$code .= \"".$templates->get("usercp_profile_profilefields_checkbox")."\";");
|
} }
| } }
|
} elseif($type == "textarea") {
| } elseif($type == "textarea") {
|
Zeile 3199 | Zeile 3185 |
---|
$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 3273 | Zeile 3260 |
---|
{ $newtitle = ''; }
|
{ $newtitle = ''; }
|
| $birthday_year = $mybb->input['birthday_year']; $user_website = $mybb->input['website']; $user_icq = $mybb->input['icq']; $user_skype = $mybb->input['skype']; $user_google = $mybb->input['google'];
|
$plugins->run_hooks("modcp_editprofile_end");
| $plugins->run_hooks("modcp_editprofile_end");
|
Zeile 3386 | Zeile 3379 |
---|
$query = $db->simple_select("users", "*", "1=1 {$where}", array("order_by" => $sortby, "order_dir" => $order, "limit" => $perpage, "limit_start" => $start)); $users = ''; while($user = $db->fetch_array($query))
|
$query = $db->simple_select("users", "*", "1=1 {$where}", array("order_by" => $sortby, "order_dir" => $order, "limit" => $perpage, "limit_start" => $start)); $users = ''; while($user = $db->fetch_array($query))
|
{
| {
|
$alt_row = alt_trow(); $user['username'] = htmlspecialchars_uni($user['username']); $user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']);
| $alt_row = alt_trow(); $user['username'] = htmlspecialchars_uni($user['username']); $user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']);
|
Zeile 3396 | Zeile 3389 |
---|
if($user['invisible'] == 1 && $mybb->usergroup['canviewwolinvis'] != 1 && $user['uid'] != $mybb->user['uid']) { $lastdate = $lang->lastvisit_never;
|
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
| if($user['lastvisit']) { // We have had at least some active time, hide it instead
|
Zeile 3420 | Zeile 3413 |
---|
$plugins->run_hooks("modcp_finduser_end");
|
$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 3443 | Zeile 3437 |
---|
$mybb->input['filter']['uid'] = (int)$search_user['uid']; $mybb->input['filter']['username'] = htmlspecialchars_uni($mybb->input['filter']['username']);
|
$mybb->input['filter']['uid'] = (int)$search_user['uid']; $mybb->input['filter']['username'] = htmlspecialchars_uni($mybb->input['filter']['username']);
|
}
| }
|
else { $mybb->input['filter']['username'] = '';
| else { $mybb->input['filter']['username'] = '';
|
Zeile 3461 | Zeile 3455 |
---|
else { $mybb->input['filter']['uid'] = '';
|
else { $mybb->input['filter']['uid'] = '';
|
}
| }
|
if(!empty($mybb->input['filter']['mod_username']))
|
if(!empty($mybb->input['filter']['mod_username']))
|
{
| {
|
$mod_user = get_user_by_username($mybb->input['filter']['mod_username']);
$mybb->input['filter']['mod_uid'] = (int)$mod_user['uid']; $mybb->input['filter']['mod_username'] = htmlspecialchars_uni($mybb->input['filter']['mod_username']);
|
$mod_user = get_user_by_username($mybb->input['filter']['mod_username']);
$mybb->input['filter']['mod_uid'] = (int)$mod_user['uid']; $mybb->input['filter']['mod_username'] = htmlspecialchars_uni($mybb->input['filter']['mod_username']);
|
} else {
| } else {
|
$mybb->input['filter']['mod_username'] = ''; } if(!empty($mybb->input['filter']['mod_uid']))
| $mybb->input['filter']['mod_username'] = ''; } if(!empty($mybb->input['filter']['mod_uid']))
|
Zeile 3488 | Zeile 3482 |
---|
$mybb->input['filter']['mod_uid'] = ''; } if(!empty($mybb->input['filter']['reason']))
|
$mybb->input['filter']['mod_uid'] = ''; } if(!empty($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']);
| $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']);
|
Zeile 3534 | Zeile 3528 |
---|
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 3551 | Zeile 3545 |
---|
$total_warnings = $db->fetch_field($query, 'count'); $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page <= 0)
|
$total_warnings = $db->fetch_field($query, 'count'); $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page <= 0)
|
{ $page = 1; }
| { $page = 1; }
|
$per_page = 20; if(isset($mybb->input['filter']['per_page']) && (int)$mybb->input['filter']['per_page'] > 0)
|
$per_page = 20; if(isset($mybb->input['filter']['per_page']) && (int)$mybb->input['filter']['per_page'] > 0)
|
{
| {
|
$per_page = (int)$mybb->input['filter']['per_page'];
|
$per_page = (int)$mybb->input['filter']['per_page'];
|
}
| }
|
$start = ($page-1) * $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 3636 | Zeile 3636 |
---|
}
$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 3650 | Zeile 3654 |
---|
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
add_breadcrumb($lang->mcp_nav_ipsearch, "modcp.php?action=ipsearch");
|
| $ipsearch_results = $ipaddressvalue = '';
|
$mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) { if(!is_array($groupscache))
|
$mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); if($mybb->input['ipaddress']) { if(!is_array($groupscache))
|
{
| {
|
$groupscache = $cache->read("usergroups"); }
| $groupscache = $cache->read("usergroups"); }
|
Zeile 3672 | Zeile 3677 |
---|
if(!is_array($ip_range)) { $post_ip_sql = "p.ipaddress=".$db->escape_binary($ip_range);
|
if(!is_array($ip_range)) { $post_ip_sql = "p.ipaddress=".$db->escape_binary($ip_range);
|
}
| }
|
else { $post_ip_sql = "p.ipaddress BETWEEN ".$db->escape_binary($ip_range[0])." AND ".$db->escape_binary($ip_range[1]); } }
|
else { $post_ip_sql = "p.ipaddress BETWEEN ".$db->escape_binary($ip_range[0])." AND ".$db->escape_binary($ip_range[1]); } }
|
|
|
$plugins->run_hooks("modcp_ipsearch_posts_start");
if($post_ip_sql) { $where_sql = '';
|
$plugins->run_hooks("modcp_ipsearch_posts_start");
if($post_ip_sql) { $where_sql = '';
|
|
|
$unviewable_forums = get_unviewable_forums(true);
if($unviewable_forums)
| $unviewable_forums = get_unviewable_forums(true);
if($unviewable_forums)
|
Zeile 3832 | Zeile 3837 |
---|
if(!empty($mybb->input[$input])) { $page_url .= "&{$input}=".urlencode($mybb->input[$input]);
|
if(!empty($mybb->input[$input])) { $page_url .= "&{$input}=".urlencode($mybb->input[$input]);
|
} }
| } }
|
$multipage = multipage($total_results, $perpage, $page, $page_url);
$post_limit = $perpage;
| $multipage = multipage($total_results, $perpage, $page, $page_url);
$post_limit = $perpage;
|
Zeile 3902 | Zeile 3907 |
---|
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 3931 | Zeile 3936 |
---|
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 3985 | Zeile 3990 |
---|
} $usersearchselect = $postsearchselect = ''; if(isset($mybb->input['search_posts']))
|
} $usersearchselect = $postsearchselect = ''; if(isset($mybb->input['search_posts']))
|
{
| {
|
$postsearchselect = "checked=\"checked\""; } if(isset($mybb->input['search_users']))
| $postsearchselect = "checked=\"checked\""; } if(isset($mybb->input['search_users']))
|
Zeile 4002 | Zeile 4007 |
---|
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(); }
|
$mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); $lang->ipaddress_misc_info = $lang->sprintf($lang->ipaddress_misc_info, htmlspecialchars_uni($mybb->input['ipaddress']));
| $mybb->input['ipaddress'] = $mybb->get_input('ipaddress'); $lang->ipaddress_misc_info = $lang->sprintf($lang->ipaddress_misc_info, htmlspecialchars_uni($mybb->input['ipaddress']));
|
Zeile 4042 | Zeile 4047 |
---|
echo($iplookup); exit; }
|
echo($iplookup); exit; }
|
|
|
if($mybb->input['action'] == "banning") { if($mybb->usergroup['canbanusers'] == 0)
| if($mybb->input['action'] == "banning") { if($mybb->usergroup['canbanusers'] == 0)
|
Zeile 4060 | Zeile 4065 |
---|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->get_input('page') != "last")
|
// Figure out if we need to display multiple pages. $perpage = $mybb->settings['threadsperpage']; if($mybb->get_input('page') != "last")
|
{
| {
|
$page = $mybb->get_input('page', MyBB::INPUT_INT); }
| $page = $mybb->get_input('page', MyBB::INPUT_INT); }
|
Zeile 4206 | Zeile 4211 |
---|
// 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)
|
{ 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 4217 | Zeile 4222 |
---|
$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 4243 | Zeile 4247 |
---|
}
// 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 4254 | Zeile 4259 |
---|
"); $user = $db->fetch_array($query);
|
"); $user = $db->fetch_array($query);
|
$existing_ban = false;
| |
if($user['uid']) { $existing_ban = true;
|
if($user['uid']) { $existing_ban = true;
|
}
| }
|
// Permission to edit this ban? if($existing_ban && $mybb->user['uid'] != $user['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission(); } }
|
// Permission to edit this ban? if($existing_ban && $mybb->user['uid'] != $user['admin'] && $mybb->usergroup['issupermod'] != 1 && $mybb->usergroup['cancp'] != 1) { error_no_permission(); } }
|
| $errors = array();
|
// Creating a new ban if(!$existing_ban)
| // Creating a new ban if(!$existing_ban)
|
Zeile 4286 | Zeile 4292 |
---|
if($user['uid'] == $mybb->user['uid']) { $errors[] = $lang->error_cannotbanself;
|
if($user['uid'] == $mybb->user['uid']) { $errors[] = $lang->error_cannotbanself;
|
}
| }
|
// Have permissions to ban this user? if(!modcp_can_manage_user($user['uid']))
| // Have permissions to ban this user? if(!modcp_can_manage_user($user['uid']))
|
Zeile 4312 | Zeile 4318 |
---|
// 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 4358 | Zeile 4364 |
---|
'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 4377 | Zeile 4383 |
---|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
'additionalgroups' => '', ); $db->update_query('users', $update_array, "uid = {$user['uid']}");
|
$cache->update_banned();
| |
// Log edit or add ban if($existing_ban)
| // Log edit or add ban if($existing_ban)
|
Zeile 4442 | Zeile 4446 |
---|
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 4454 | Zeile 4458 |
---|
}
// 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 4516 | Zeile 4520 |
---|
$bangroup_option = $bangroups = ''; $numgroups = $banned_group = 0; $groupscache = $cache->read("usergroups");
|
$bangroup_option = $bangroups = ''; $numgroups = $banned_group = 0; $groupscache = $cache->read("usergroups");
|
|
|
foreach($groupscache as $key => $group) { if($group['isbannedgroup'])
| foreach($groupscache as $key => $group) { if($group['isbannedgroup'])
|
Zeile 4654 | Zeile 4658 |
---|
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 4666 | Zeile 4670 |
---|
if(my_strlen($post['subject']) > 25) { $post['subject'] = my_substr($post['subject'], 0, 25)."...";
|
if(my_strlen($post['subject']) > 25) { $post['subject'] = my_substr($post['subject'], 0, 25)."...";
|
}
| }
|
$post['subject'] = htmlspecialchars_uni($post['subject']); $post['fullsubject'] = htmlspecialchars_uni($post['fullsubject']); $unapproved_posts = my_number_format($unapproved_posts);
| $post['subject'] = htmlspecialchars_uni($post['subject']); $post['fullsubject'] = htmlspecialchars_uni($post['fullsubject']); $unapproved_posts = my_number_format($unapproved_posts);
|
Zeile 4725 | Zeile 4729 |
---|
$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 4774 | Zeile 4778 |
---|
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 4893 | Zeile 4897 |
---|
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");
|