Zeile 222 | Zeile 222 |
---|
if($mybb->input['action'] == "get_users") { $mybb->input['query'] = ltrim($mybb->get_input('query'));
|
if($mybb->input['action'] == "get_users") { $mybb->input['query'] = ltrim($mybb->get_input('query'));
|
| $search_type = $mybb->get_input('search_type', MyBB::INPUT_INT); // 0: contains, 1: starts with, 2: ends with
|
// If the string is less than 2 characters, quit. if(my_strlen($mybb->input['query']) < 2)
| // If the string is less than 2 characters, quit. if(my_strlen($mybb->input['query']) < 2)
|
Zeile 251 | Zeile 252 |
---|
$plugins->run_hooks("xmlhttp_get_users_start");
|
$plugins->run_hooks("xmlhttp_get_users_start");
|
$query = $db->simple_select("users", "uid, username", "username LIKE '".$db->escape_string_like($mybb->input['query'])."%'", $query_options); if($limit == 1)
| $likestring = $db->escape_string_like($mybb->input['query']); if($search_type == 1) { $likestring .= '%'; } elseif($search_type == 2) { $likestring = '%'.$likestring; } else { $likestring = '%'.$likestring.'%'; }
$query = $db->simple_select("users", "uid, username", "username LIKE '{$likestring}'", $query_options); if($limit == 1)
|
{ $user = $db->fetch_array($query);
|
{ $user = $db->fetch_array($query);
|
$data = array('id' => $user['username'], 'text' => $user['username']);
| $data = array('uid' => $user['uid'], 'id' => $user['username'], 'text' => $user['username']);
|
} else { $data = array(); while($user = $db->fetch_array($query))
|
} else { $data = array(); while($user = $db->fetch_array($query))
|
{ $data[] = array('id' => $user['username'], 'text' => $user['username']); } }
| { $data[] = array('uid' => $user['uid'], 'id' => $user['username'], 'text' => $user['username']); } }
|
$plugins->run_hooks("xmlhttp_get_users_end");
echo json_encode($data);
| $plugins->run_hooks("xmlhttp_get_users_end");
echo json_encode($data);
|
Zeile 288 | Zeile 303 |
---|
if(!$thread) { xmlhttp_error($lang->thread_doesnt_exist);
|
if(!$thread) { xmlhttp_error($lang->thread_doesnt_exist);
|
}
| }
|
// Fetch some of the information from the first post of this thread. $query_options = array( "order_by" => "dateline",
| // Fetch some of the information from the first post of this thread. $query_options = array( "order_by" => "dateline",
|
Zeile 301 | Zeile 316 |
---|
else { exit;
|
else { exit;
|
}
| }
|
// Fetch the specific forum this thread/post is in. $forum = get_forum($thread['fid']);
| // Fetch the specific forum this thread/post is in. $forum = get_forum($thread['fid']);
|
Zeile 337 | Zeile 352 |
---|
xmlhttp_error($lang->edit_time_limit); } $ismod = false;
|
xmlhttp_error($lang->edit_time_limit); } $ismod = false;
|
}
| }
|
else
|
else
|
{
| {
|
$ismod = true; } $subject = $mybb->get_input('value');
| $ismod = true; } $subject = $mybb->get_input('value');
|
Zeile 348 | Zeile 363 |
---|
if(function_exists("iconv")) { $subject = iconv($charset, "UTF-8//IGNORE", $subject);
|
if(function_exists("iconv")) { $subject = iconv($charset, "UTF-8//IGNORE", $subject);
|
} else if(function_exists("mb_convert_encoding"))
| } else if(function_exists("mb_convert_encoding"))
|
{ $subject = @mb_convert_encoding($subject, $charset, "UTF-8");
|
{ $subject = @mb_convert_encoding($subject, $charset, "UTF-8");
|
}
| }
|
else if(my_strtolower($charset) == "iso-8859-1") { $subject = utf8_decode($subject);
| else if(my_strtolower($charset) == "iso-8859-1") { $subject = utf8_decode($subject);
|
Zeile 361 | Zeile 376 |
---|
// Only edit subject if subject has actually been changed if($thread['subject'] != $subject)
|
// Only edit subject if subject has actually been changed if($thread['subject'] != $subject)
|
{
| {
|
// Set up posthandler. require_once MYBB_ROOT."inc/datahandlers/post.php"; $posthandler = new PostDataHandler("update");
| // Set up posthandler. require_once MYBB_ROOT."inc/datahandlers/post.php"; $posthandler = new PostDataHandler("update");
|
Zeile 396 | Zeile 411 |
---|
log_moderator_action($modlogdata, $lang->edited_post); } }
|
log_moderator_action($modlogdata, $lang->edited_post); } }
|
}
| }
|
require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
| require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
|
Zeile 421 | Zeile 436 |
---|
$post = get_post($mybb->get_input('pid', MyBB::INPUT_INT));
// No result, die.
|
$post = get_post($mybb->get_input('pid', MyBB::INPUT_INT));
// No result, die.
|
if(!$post) {
| if(!$post || $post['visible'] == -1) {
|
xmlhttp_error($lang->post_doesnt_exist); }
|
xmlhttp_error($lang->post_doesnt_exist); }
|
|
|
// Fetch the thread associated with this post. $thread = get_thread($post['tid']);
|
// Fetch the thread associated with this post. $thread = get_thread($post['tid']);
|
|
|
// Fetch the specific forum this thread/post is in. $forum = get_forum($thread['fid']);
// Missing thread, invalid forum? Error. if(!$thread || !$forum || $forum['type'] != "f")
|
// Fetch the specific forum this thread/post is in. $forum = get_forum($thread['fid']);
// Missing thread, invalid forum? Error. if(!$thread || !$forum || $forum['type'] != "f")
|
{
| {
|
xmlhttp_error($lang->thread_doesnt_exist);
|
xmlhttp_error($lang->thread_doesnt_exist);
|
}
| }
|
// Check if this forum is password protected and we have a valid password if(check_forum_password($forum['fid'], 0, true)) {
| // Check if this forum is password protected and we have a valid password if(check_forum_password($forum['fid'], 0, true)) {
|
Zeile 446 | Zeile 461 |
---|
// Fetch forum permissions. $forumpermissions = forum_permissions($forum['fid']);
|
// Fetch forum permissions. $forumpermissions = forum_permissions($forum['fid']);
|
|
|
$plugins->run_hooks("xmlhttp_edit_post_start");
// If this user is not a moderator with "caneditposts" permissions.
| $plugins->run_hooks("xmlhttp_edit_post_start");
// If this user is not a moderator with "caneditposts" permissions.
|
Zeile 468 | Zeile 483 |
---|
$lang->edit_time_limit = $lang->sprintf($lang->edit_time_limit, $mybb->usergroup['edittimelimit']); xmlhttp_error($lang->edit_time_limit); }
|
$lang->edit_time_limit = $lang->sprintf($lang->edit_time_limit, $mybb->usergroup['edittimelimit']); xmlhttp_error($lang->edit_time_limit); }
|
// User can't edit unapproved post if($post['visible'] == 0)
| // User can't edit unapproved post unless permitted for own if($post['visible'] == 0 && !($mybb->settings['showownunapproved'] && $post['uid'] == $mybb->user['uid']))
|
{ xmlhttp_error($lang->post_moderation);
|
{ xmlhttp_error($lang->post_moderation);
|
}
| }
|
}
$plugins->run_hooks("xmlhttp_edit_post_end");
| }
$plugins->run_hooks("xmlhttp_edit_post_end");
|
Zeile 532 | Zeile 547 |
---|
if($post['pid'] == $thread['firstpost']) { $updatepost['prefix'] = $thread['prefix'];
|
if($post['pid'] == $thread['firstpost']) { $updatepost['prefix'] = $thread['prefix'];
|
}
| }
|
$posthandler->set_data($updatepost);
| $posthandler->set_data($updatepost);
|
Zeile 543 | Zeile 558 |
---|
xmlhttp_error($post_errors); } // No errors were found, we can call the update method.
|
xmlhttp_error($post_errors); } // No errors were found, we can call the update method.
|
else
| else
|
{ $postinfo = $posthandler->update_post(); $visible = $postinfo['visible'];
| { $postinfo = $posthandler->update_post(); $visible = $postinfo['visible'];
|
Zeile 682 | Zeile 697 |
---|
{ $inactiveforums = "AND t.fid NOT IN ({$inactiveforums})"; }
|
{ $inactiveforums = "AND t.fid NOT IN ({$inactiveforums})"; }
|
| // Check group permissions if we can't view threads not started by us $group_permissions = forum_permissions(); $onlyusfids = array(); foreach($group_permissions as $gpfid => $forum_permissions) { if(isset($forum_permissions['canonlyviewownthreads']) && $forum_permissions['canonlyviewownthreads'] == 1) { $onlyusfids[] = $gpfid; } }
|
$message = '';
// Are we loading all quoted posts or only those not in the current thread?
| $message = '';
// Are we loading all quoted posts or only those not in the current thread?
|
Zeile 693 | Zeile 720 |
---|
{ $from_tid = ''; }
|
{ $from_tid = ''; }
|
|
|
require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
|
require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
|
|
|
require_once MYBB_ROOT."inc/functions_posting.php";
$plugins->run_hooks("xmlhttp_get_multiquoted_intermediate");
// Query for any posts in the list which are not within the specified thread $query = $db->query("
|
require_once MYBB_ROOT."inc/functions_posting.php";
$plugins->run_hooks("xmlhttp_get_multiquoted_intermediate");
// Query for any posts in the list which are not within the specified thread $query = $db->query("
|
SELECT p.subject, p.message, p.pid, p.tid, p.username, p.dateline, t.fid, p.visible, u.username AS userusername
| SELECT p.subject, p.message, p.pid, p.tid, p.username, p.dateline, t.fid, t.uid AS thread_uid, p.visible, u.username AS userusername
|
FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
| FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
|
Zeile 712 | Zeile 739 |
---|
"); while($quoted_post = $db->fetch_array($query)) {
|
"); while($quoted_post = $db->fetch_array($query)) {
|
if(!is_moderator($quoted_post['fid'], "canviewunapprove") && $quoted_post['visible'] == 0)
| if( (!is_moderator($quoted_post['fid'], "canviewunapprove") && $quoted_post['visible'] == 0) || (!is_moderator($quoted_post['fid'], "canviewdeleted") && $quoted_post['visible'] == -1) || (in_array($quoted_post['fid'], $onlyusfids) && (!$mybb->user['uid'] || $quoted_post['thread_uid'] != $mybb->user['uid'])) )
|
{
|
{
|
continue;
| // Allow quoting from own unapproved post if($quoted_post['visible'] == 0 && !($mybb->settings['showownunapproved'] && $quoted_post['uid'] == $mybb->user['uid'])) { continue; }
|
}
$message .= parse_quoted_message($quoted_post, false);
| }
$message .= parse_quoted_message($quoted_post, false);
|
Zeile 833 | Zeile 868 |
---|
header("Content-type: application/json; charset={$charset}"); $sid = $db->escape_string($mybb->get_input('question')); $answer = $db->escape_string($mybb->get_input('answer'));
|
header("Content-type: application/json; charset={$charset}"); $sid = $db->escape_string($mybb->get_input('question')); $answer = $db->escape_string($mybb->get_input('answer'));
|
|
|
$query = $db->query(" SELECT q.*, s.sid FROM ".TABLE_PREFIX."questionsessions s
| $query = $db->query(" SELECT q.*, s.sid FROM ".TABLE_PREFIX."questionsessions s
|
Zeile 844 | Zeile 879 |
---|
if($db->num_rows($query) == 0) { echo json_encode($lang->answer_valid_not_exists);
|
if($db->num_rows($query) == 0) { echo json_encode($lang->answer_valid_not_exists);
|
exit;
| exit;
|
} else {
| } else {
|
Zeile 902 | Zeile 937 |
---|
if(!verify_post_check($mybb->get_input('my_post_key'), true)) { xmlhttp_error($lang->invalid_post_code);
|
if(!verify_post_check($mybb->get_input('my_post_key'), true)) { xmlhttp_error($lang->invalid_post_code);
|
}
| }
|
require_once MYBB_ROOT."inc/functions_user.php"; $username = $mybb->get_input('username');
|
require_once MYBB_ROOT."inc/functions_user.php"; $username = $mybb->get_input('username');
|
|
|
// Fix bad characters $username = trim_blank_chrs($username); $username = str_replace(array(unichr(160), unichr(173), unichr(0xCA), dec_to_utf8(8238), dec_to_utf8(8237), dec_to_utf8(8203)), array(" ", "-", "", "", "", ""), $username);
| // Fix bad characters $username = trim_blank_chrs($username); $username = str_replace(array(unichr(160), unichr(173), unichr(0xCA), dec_to_utf8(8238), dec_to_utf8(8237), dec_to_utf8(8203)), array(" ", "-", "", "", "", ""), $username);
|
Zeile 915 | Zeile 950 |
---|
$username = preg_replace("#\s{2,}#", " ", $username);
header("Content-type: application/json; charset={$charset}");
|
$username = preg_replace("#\s{2,}#", " ", $username);
header("Content-type: application/json; charset={$charset}");
|
|
|
if(empty($username))
|
if(empty($username))
|
{
| {
|
echo json_encode($lang->banned_characters_username);
|
echo json_encode($lang->banned_characters_username);
|
exit; }
| exit; }
|
// Check if the username belongs to the list of banned usernames. $banned_username = is_banned_username($username, true); if($banned_username) { echo json_encode($lang->banned_username);
|
// Check if the username belongs to the list of banned usernames. $banned_username = is_banned_username($username, true); if($banned_username) { echo json_encode($lang->banned_username);
|
exit; }
| exit; }
|
// Check for certain characters in username (<, >, &, and slashes) if(strpos($username, "<") !== false || strpos($username, ">") !== false || strpos($username, "&") !== false || my_strpos($username, "\\") !== false || strpos($username, ";") !== false || strpos($username, ",") !== false || !validate_utf8_string($username, false, false)) {
| // Check for certain characters in username (<, >, &, and slashes) if(strpos($username, "<") !== false || strpos($username, ">") !== false || strpos($username, "&") !== false || my_strpos($username, "\\") !== false || strpos($username, ";") !== false || strpos($username, ",") !== false || !validate_utf8_string($username, false, false)) {
|
Zeile 941 | Zeile 976 |
---|
$user = get_user_by_username($username);
$plugins->run_hooks("xmlhttp_username_availability");
|
$user = get_user_by_username($username);
$plugins->run_hooks("xmlhttp_username_availability");
|
|
|
if($user['uid'])
|
if($user['uid'])
|
{
| {
|
$lang->username_taken = $lang->sprintf($lang->username_taken, htmlspecialchars_uni($username)); echo json_encode($lang->username_taken);
|
$lang->username_taken = $lang->sprintf($lang->username_taken, htmlspecialchars_uni($username)); echo json_encode($lang->username_taken);
|
exit; }
| exit; }
|
else { //$lang->username_available = $lang->sprintf($lang->username_available, htmlspecialchars_uni($username));
|
else { //$lang->username_available = $lang->sprintf($lang->username_available, htmlspecialchars_uni($username));
|
echo json_encode("true"); exit; }
| echo json_encode("true"); exit; }
|
}
|
}
|
else if($mybb->input['action'] == "username_exists")
| else if($mybb->input['action'] == "email_availability")
|
{ if(!verify_post_check($mybb->get_input('my_post_key'), true)) { xmlhttp_error($lang->invalid_post_code); }
|
{ if(!verify_post_check($mybb->get_input('my_post_key'), true)) { xmlhttp_error($lang->invalid_post_code); }
|
require_once MYBB_ROOT."inc/functions_user.php"; $username = $mybb->get_input('value');
header("Content-type: application/json; charset={$charset}");
| require_once MYBB_ROOT."inc/datahandlers/user.php"; $userhandler = new UserDataHandler("insert");
$email = $mybb->get_input('email');
|
|
|
if(!trim($username)) { echo json_encode(array("success" => 1)); exit; }
// Check if the username actually exists $user = get_user_by_username($username);
$plugins->run_hooks("xmlhttp_username_exists");
if($user['uid']) { $lang->valid_username = $lang->sprintf($lang->valid_username, htmlspecialchars_uni($username)); echo json_encode(array("success" => $lang->valid_username)); exit; } else { $lang->invalid_username = $lang->sprintf($lang->invalid_username, htmlspecialchars_uni($username)); echo json_encode($lang->invalid_username);
| header("Content-type: application/json; charset={$charset}");
$user = array( 'email' => $email );
$userhandler->set_data($user);
$errors = array();
if(!$userhandler->verify_email()) { $errors = $userhandler->get_friendly_errors(); }
$plugins->run_hooks("xmlhttp_email_availability");
if(!empty($errors)) { echo json_encode($errors[0]); exit; } else { echo json_encode("true");
|
exit; } }
| exit; } }
|
Zeile 1035 | Zeile 1074 |
---|
{ xmlhttp_error($lang->buddylist_error); }
|
{ xmlhttp_error($lang->buddylist_error); }
|
| } else if($mybb->input['action'] == 'get_referrals') { $lang->load('member'); $uid = $mybb->get_input('uid', MYBB::INPUT_INT);
if (!$uid) { xmlhttp_error($lang->referrals_no_user_specified); }
$referrals = get_user_referrals($uid);
if (empty($referrals)) { eval("\$referral_rows = \"".$templates->get('member_no_referrals')."\";"); } else { foreach($referrals as $referral) { // Format user name link $username = htmlspecialchars_uni($referral['username']); $username = format_name($username, $referral['usergroup'], $referral['displaygroup']); $username = build_profile_link($username, $referral['uid']);
$regdate = my_date('normal', $referral['regdate']);
eval("\$referral_rows .= \"".$templates->get('member_referral_row')."\";");
$bg_color = alt_trow(); } }
$plugins->run_hooks('xmlhttp_referrals_end');
eval("\$referrals = \"".$templates->get('member_referrals_popup', 1, 0)."\";");
// Send our headers and output. header("Content-type: text/plain; charset={$charset}"); echo $referrals;
|
}
/**
| }
/**
|