Zeile 32 | Zeile 32 |
---|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
|
| require_once MYBB_ROOT."inc/functions_search.php";
|
require_once MYBB_ROOT."inc/functions_user.php"; require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
| require_once MYBB_ROOT."inc/functions_user.php"; require_once MYBB_ROOT."inc/class_parser.php"; $parser = new postParser;
|
Zeile 50 | Zeile 51 |
---|
usercp_menu();
|
usercp_menu();
|
$server_http_referer = htmlentities($_SERVER['HTTP_REFERER']);
if(my_strpos($server_http_referer, $mybb->settings['bburl'].'/') !== 0)
| $server_http_referer = ''; if(isset($_SERVER['HTTP_REFERER']))
|
{
|
{
|
if(my_strpos($server_http_referer, '/') === 0)
| $server_http_referer = htmlentities($_SERVER['HTTP_REFERER']);
if(my_strpos($server_http_referer, $mybb->settings['bburl'].'/') !== 0)
|
{
|
{
|
$server_http_referer = my_substr($server_http_referer, 1);
| if(my_strpos($server_http_referer, '/') === 0) { $server_http_referer = my_substr($server_http_referer, 1); } $url_segments = explode('/', $server_http_referer); $server_http_referer = $mybb->settings['bburl'].'/'.end($url_segments);
|
}
|
}
|
$url_segments = explode('/', $server_http_referer); $server_http_referer = $mybb->settings['bburl'].'/'.end($url_segments);
| |
}
$plugins->run_hooks("usercp_start");
| }
$plugins->run_hooks("usercp_start");
|
Zeile 74 | Zeile 79 |
---|
);
$userhandler->set_data($data);
|
);
$userhandler->set_data($data);
|
|
|
if(!$userhandler->verify_signature()) { $error = inline_error($userhandler->get_friendly_errors());
| if(!$userhandler->verify_signature()) { $error = inline_error($userhandler->get_friendly_errors());
|
Zeile 106 | Zeile 111 |
---|
case "password": case "do_password": add_breadcrumb($lang->nav_password);
|
case "password": case "do_password": add_breadcrumb($lang->nav_password);
|
break;
| break;
|
case "changename": case "do_changename": add_breadcrumb($lang->nav_changename);
| case "changename": case "do_changename": add_breadcrumb($lang->nav_changename);
|
Zeile 223 | Zeile 228 |
---|
"away" => $away, "profile_fields" => $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY) ));
|
"away" => $away, "profile_fields" => $mybb->get_input('profile_fields', MyBB::INPUT_ARRAY) ));
|
foreach(array('icq', 'skype', 'google') as $cfield)
| foreach(array('skype', 'google') as $cfield)
|
{ $csetting = 'allow'.$cfield.'field'; if($mybb->settings[$csetting] == '')
| { $csetting = 'allow'.$cfield.'field'; if($mybb->settings[$csetting] == '')
|
Zeile 236 | Zeile 241 |
---|
continue; }
|
continue; }
|
if($cfield == 'icq') { $user[$cfield] = $mybb->get_input($cfield, 1);
if(my_strlen($user[$cfield]) > 10) { error($lang->contact_field_icqerror); } } else { $user[$cfield] = $mybb->get_input($cfield);
if(my_strlen($user[$cfield]) > 75) { error($lang->contact_field_error); } } }
| $user[$cfield] = $mybb->get_input($cfield);
if(my_strlen($user[$cfield]) > 75) { error($lang->contact_field_error); } }
|
if($mybb->usergroup['canchangewebsite'] == 1)
|
if($mybb->usergroup['canchangewebsite'] == 1)
|
{ $user['website'] = $mybb->get_input('website');
| { $user['website'] = $mybb->get_input('website');
|
}
if($mybb->usergroup['cancustomtitle'] == 1)
| }
if($mybb->usergroup['cancustomtitle'] == 1)
|
Zeile 273 | Zeile 266 |
---|
} } $userhandler->set_data($user);
|
} } $userhandler->set_data($user);
|
|
|
if(!$userhandler->validate_user()) { $errors = $userhandler->get_friendly_errors(); $raw_errors = $userhandler->get_errors();
// Set to stored value if invalid
|
if(!$userhandler->validate_user()) { $errors = $userhandler->get_friendly_errors(); $raw_errors = $userhandler->get_errors();
// Set to stored value if invalid
|
if(array_key_exists("invalid_birthday_privacy", $raw_errors)) {
| if(array_key_exists("invalid_birthday_privacy", $raw_errors) || array_key_exists("conflicted_birthday_privacy", $raw_errors)) {
|
$mybb->input['birthdayprivacy'] = $mybb->user['birthdayprivacy'];
|
$mybb->input['birthdayprivacy'] = $mybb->user['birthdayprivacy'];
|
| $bday = explode("-", $mybb->user['birthday']);
if(isset($bday[2])) { $mybb->input['bday3'] = $bday[2]; }
|
}
$errors = inline_error($errors); $mybb->input['action'] = "profile";
|
}
$errors = inline_error($errors); $mybb->input['action'] = "profile";
|
}
| }
|
else { $userhandler->update_user();
| else { $userhandler->update_user();
|
Zeile 312 | Zeile 311 |
---|
$user = $mybb->user; $bday = explode("-", $user['birthday']); if(!isset($bday[1]))
|
$user = $mybb->user; $bday = explode("-", $user['birthday']); if(!isset($bday[1]))
|
{
| {
|
$bday[1] = 0;
|
$bday[1] = 0;
|
} if(!isset($bday[2])) { $bday[2] = '';
| |
} }
|
} }
|
| if(!isset($bday[2]) || $bday[2] == 0) { $bday[2] = ''; }
|
$plugins->run_hooks("usercp_profile_start");
$bdaydaysel = '';
| $plugins->run_hooks("usercp_profile_start");
$bdaydaysel = '';
|
Zeile 333 | Zeile 332 |
---|
else { $selected = '';
|
else { $selected = '';
|
}
| }
|
eval("\$bdaydaysel .= \"".$templates->get("usercp_profile_day")."\";"); }
$bdaymonthsel = array(); foreach(range(1, 12) as $month)
|
eval("\$bdaydaysel .= \"".$templates->get("usercp_profile_day")."\";"); }
$bdaymonthsel = array(); foreach(range(1, 12) as $month)
|
{
| {
|
$bdaymonthsel[$month] = ''; } $bdaymonthsel[$bday[1]] = 'selected="selected"';
| $bdaymonthsel[$month] = ''; } $bdaymonthsel[$bday[1]] = 'selected="selected"';
|
Zeile 353 | Zeile 352 |
---|
elseif($user['birthdayprivacy'] == 'none') { $noneselected = " selected=\"selected\"";
|
elseif($user['birthdayprivacy'] == 'none') { $noneselected = " selected=\"selected\"";
|
}
| }
|
elseif($user['birthdayprivacy'] == 'age') { $ageselected = " selected=\"selected\"";
| elseif($user['birthdayprivacy'] == 'age') { $ageselected = " selected=\"selected\"";
|
Zeile 366 | Zeile 365 |
---|
else { $user['website'] = htmlspecialchars_uni($user['website']);
|
else { $user['website'] = htmlspecialchars_uni($user['website']);
|
}
if($user['icq'] != "0") { $user['icq'] = (int)$user['icq']; }
if($user['icq'] == 0) { $user['icq'] = ''; }
| }
|
if($errors) {
| if($errors) {
|
Zeile 388 | Zeile 377 |
---|
$contactfields = ''; $cfieldsshow = false;
|
$contactfields = ''; $cfieldsshow = false;
|
foreach(array('icq', 'skype', 'google') as $cfield)
| foreach(array('skype', 'google') as $cfield)
|
{ $contact_fields[$cfield] = ''; $csetting = 'allow'.$cfield.'field'; if($mybb->settings[$csetting] == '')
|
{ $contact_fields[$cfield] = ''; $csetting = 'allow'.$cfield.'field'; if($mybb->settings[$csetting] == '')
|
{ continue; }
| { continue; }
|
if(!is_member($mybb->settings[$csetting])) { continue;
| if(!is_member($mybb->settings[$csetting])) { continue;
|
Zeile 416 | Zeile 405 |
---|
eval('$contactfields = "'.$templates->get('usercp_profile_contact_fields').'";'); }
|
eval('$contactfields = "'.$templates->get('usercp_profile_contact_fields').'";'); }
|
| $awaysection = '';
|
if($mybb->settings['allowaway'] != 0) { $awaycheck = array('', '');
| if($mybb->settings['allowaway'] != 0) { $awaycheck = array('', '');
|
Zeile 501 | Zeile 491 |
---|
continue; }
|
continue; }
|
| $userfield = $code = $select = $val = $options = $expoptions = $useropts = ''; $seloptions = array();
|
$profilefield['type'] = htmlspecialchars_uni($profilefield['type']); $profilefield['name'] = htmlspecialchars_uni($profilefield['name']); $profilefield['description'] = htmlspecialchars_uni($profilefield['description']);
| $profilefield['type'] = htmlspecialchars_uni($profilefield['type']); $profilefield['name'] = htmlspecialchars_uni($profilefield['name']); $profilefield['description'] = htmlspecialchars_uni($profilefield['description']);
|
Zeile 515 | Zeile 507 |
---|
$options = array(); } $field = "fid{$profilefield['fid']}";
|
$options = array(); } $field = "fid{$profilefield['fid']}";
|
$select = '';
| |
if($errors) { if(!isset($mybb->input['profile_fields'][$field]))
| if($errors) { if(!isset($mybb->input['profile_fields'][$field]))
|
Zeile 672 | Zeile 663 |
---|
eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
|
eval("\$customfields .= \"".$templates->get("usercp_profile_customfield")."\";"); } $altbg = alt_trow();
|
$code = ""; $select = ""; $val = ""; $options = ""; $expoptions = ""; $useropts = ""; $seloptions = array();
| |
} } if($customfields)
| } } if($customfields)
|
Zeile 700 | Zeile 684 |
---|
$defaulttitle = htmlspecialchars_uni($title['title']); break; }
|
$defaulttitle = htmlspecialchars_uni($title['title']); break; }
|
} } else
| } } else
|
{ $defaulttitle = htmlspecialchars_uni($mybb->usergroup['usertitle']);
|
{ $defaulttitle = htmlspecialchars_uni($mybb->usergroup['usertitle']);
|
}
| }
|
$newtitle = ''; if(trim($user['usertitle']) == '')
|
$newtitle = ''; if(trim($user['usertitle']) == '')
|
{
| {
|
$lang->current_custom_usertitle = ''; } else
| $lang->current_custom_usertitle = ''; } else
|
Zeile 727 | Zeile 711 |
---|
if(!empty($mybb->user['usertitle'])) { eval("\$currentcustom = \"".$templates->get("usercp_profile_customtitle_currentcustom")."\";");
|
if(!empty($mybb->user['usertitle'])) { eval("\$currentcustom = \"".$templates->get("usercp_profile_customtitle_currentcustom")."\";");
|
|
|
if($mybb->user['usertitle'] != $mybb->usergroup['usertitle']) { eval("\$reverttitle = \"".$templates->get("usercp_profile_customtitle_reverttitle")."\";");
| if($mybb->user['usertitle'] != $mybb->usergroup['usertitle']) { eval("\$reverttitle = \"".$templates->get("usercp_profile_customtitle_reverttitle")."\";");
|
Zeile 741 | Zeile 725 |
---|
$customtitle = ""; }
|
$customtitle = ""; }
|
| $website = '';
|
if($mybb->usergroup['canchangewebsite'] == 1) { eval("\$website = \"".$templates->get("usercp_profile_website")."\";");
| if($mybb->usergroup['canchangewebsite'] == 1) { eval("\$website = \"".$templates->get("usercp_profile_website")."\";");
|
Zeile 826 | Zeile 811 |
---|
$plugins->run_hooks("usercp_do_options_end");
redirect("usercp.php?action=options", $lang->redirect_optionsupdated);
|
$plugins->run_hooks("usercp_do_options_end");
redirect("usercp.php?action=options", $lang->redirect_optionsupdated);
|
}
| }
|
}
if($mybb->input['action'] == "options")
| }
if($mybb->input['action'] == "options")
|
Zeile 872 | Zeile 857 |
---|
$allownoticescheck = ""; }
|
$allownoticescheck = ""; }
|
if(isset($user['invisible']) && $user['invisible'] == 1)
| $canbeinvisible = '';
// Check usergroup permission before showing invisible check box if($mybb->usergroup['canbeinvisible'] == 1)
|
{
|
{
|
$invisiblecheck = "checked=\"checked\""; } else { $invisiblecheck = "";
| if(isset($user['invisible']) && $user['invisible'] == 1) { $invisiblecheck = "checked=\"checked\""; } else { $invisiblecheck = ""; } eval('$canbeinvisible = "'.$templates->get("usercp_options_invisible")."\";");
|
}
if(isset($user['hideemail']) && $user['hideemail'] == 1)
| }
if(isset($user['hideemail']) && $user['hideemail'] == 1)
|
Zeile 1507 | Zeile 1499 |
---|
$plugins->run_hooks("usercp_subscriptions_start");
// Thread visiblity
|
$plugins->run_hooks("usercp_subscriptions_start");
// Thread visiblity
|
$visible = "AND t.visible != 0"; if(is_moderator() == true)
| $where = array( "s.uid={$mybb->user['uid']}", get_visible_where('t') );
if($unviewable_forums = get_unviewable_forums(true)) { $where[] = "t.fid NOT IN ({$unviewable_forums})"; }
if($inactive_forums = get_inactive_forums())
|
{
|
{
|
$visible = '';
| $where[] = "t.fid NOT IN ({$inactive_forums})";
|
}
|
}
|
| $where = implode(' AND ', $where);
|
// Do Multi Pages $query = $db->query("
|
// Do Multi Pages $query = $db->query("
|
SELECT COUNT(ts.tid) as threads FROM ".TABLE_PREFIX."threadsubscriptions ts LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = ts.tid) WHERE ts.uid = '".$mybb->user['uid']."' AND t.visible >= 0 {$visible}
| SELECT COUNT(s.tid) as threads FROM ".TABLE_PREFIX."threadsubscriptions s LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid = s.tid) WHERE {$where}
|
"); $threadcount = $db->fetch_field($query, "threads");
| "); $threadcount = $db->fetch_field($query, "threads");
|
Zeile 1562 | Zeile 1565 |
---|
FROM ".TABLE_PREFIX."threadsubscriptions s LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
FROM ".TABLE_PREFIX."threadsubscriptions s LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
WHERE s.uid='".$mybb->user['uid']."' and t.visible >= 0 {$visible}
| WHERE {$where}
|
ORDER BY t.lastpost DESC LIMIT $start, $perpage ");
| ORDER BY t.lastpost DESC LIMIT $start, $perpage ");
|
Zeile 1570 | Zeile 1573 |
---|
{ $forumpermissions = $fpermissions[$subscription['fid']];
|
{ $forumpermissions = $fpermissions[$subscription['fid']];
|
if($forumpermissions['canview'] == 0 || $forumpermissions['canviewthreads'] == 0 || (isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] != 0 && $subscription['uid'] != $mybb->user['uid']))
| if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] != 0 && $subscription['uid'] != $mybb->user['uid'])
|
{ // Hmm, you don't have permission to view this thread - unsubscribe! $del_subscriptions[] = $subscription['sid'];
| { // Hmm, you don't have permission to view this thread - unsubscribe! $del_subscriptions[] = $subscription['sid'];
|
Zeile 1584 | Zeile 1587 |
---|
if(!empty($del_subscriptions)) { $sids = implode(',', $del_subscriptions);
|
if(!empty($del_subscriptions)) { $sids = implode(',', $del_subscriptions);
|
|
|
if($sids) { $db->delete_query("threadsubscriptions", "sid IN ({$sids}) AND uid='{$mybb->user['uid']}'");
| if($sids) { $db->delete_query("threadsubscriptions", "sid IN ({$sids}) AND uid='{$mybb->user['uid']}'");
|
Zeile 1653 | Zeile 1656 |
---|
// If this thread has a prefix, insert a space between prefix and subject if($thread['prefix'] != 0 && !empty($threadprefixes[$thread['prefix']]))
|
// If this thread has a prefix, insert a space between prefix and subject if($thread['prefix'] != 0 && !empty($threadprefixes[$thread['prefix']]))
|
{
| {
|
$thread['threadprefix'] = $threadprefixes[$thread['prefix']]['displaystyle'].' '; }
| $thread['threadprefix'] = $threadprefixes[$thread['prefix']]['displaystyle'].' '; }
|
Zeile 1696 | Zeile 1699 |
---|
if($mybb->settings['threadreadcut'] > 0) {
|
if($mybb->settings['threadreadcut'] > 0) {
|
$forum_read = $readforums[$thread['fid']];
| |
$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
|
$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
|
if($forum_read == 0 || $forum_read < $read_cutoff) {
| if(empty($readforums[$thread['fid']]) || $readforums[$thread['fid']] < $read_cutoff) {
|
$forum_read = $read_cutoff;
|
$forum_read = $read_cutoff;
|
| } else { $forum_read = $readforums[$thread['fid']];
|
} }
| } }
|
Zeile 1713 | Zeile 1718 |
---|
if($thread['lastpost'] > $cutoff) {
|
if($thread['lastpost'] > $cutoff) {
|
if($thread['lastread'])
| if(!empty($thread['lastread']))
|
{ $lastread = $thread['lastread']; }
| { $lastread = $thread['lastread']; }
|
Zeile 1772 | Zeile 1777 |
---|
// Build last post info $lastpostdate = my_date('relative', $thread['lastpost']);
|
// Build last post info $lastpostdate = my_date('relative', $thread['lastpost']);
|
| $lastposteruid = $thread['lastposteruid'];
|
if(!$lastposteruid && !$thread['lastposter'])
|
if(!$lastposteruid && !$thread['lastposter'])
|
{
| {
|
$lastposter = htmlspecialchars_uni($lang->guest);
|
$lastposter = htmlspecialchars_uni($lang->guest);
|
}
| }
|
else { $lastposter = htmlspecialchars_uni($thread['lastposter']); }
|
else { $lastposter = htmlspecialchars_uni($thread['lastposter']); }
|
$lastposteruid = $thread['lastposteruid'];
| |
// Don't link to guest's profiles (they have no profile). if($lastposteruid == 0)
| // Don't link to guest's profiles (they have no profile). if($lastposteruid == 0)
|
Zeile 2387 | Zeile 2392 |
---|
else { // User is allowed to edit their signature
|
else { // User is allowed to edit their signature
|
| $smilieinserter = '';
|
if($mybb->settings['sigsmilies'] == 1) { $sigsmilies = $lang->on;
| if($mybb->settings['sigsmilies'] == 1) { $sigsmilies = $lang->on;
|
Zeile 2420 | Zeile 2426 |
---|
{ $sigimgcode = $lang->off; }
|
{ $sigimgcode = $lang->off; }
|
| if($mybb->settings['siglength'] == 0) { $siglength = $lang->unlimited; } else { $siglength = $mybb->settings['siglength']; }
|
$sig = htmlspecialchars_uni($sig);
|
$sig = htmlspecialchars_uni($sig);
|
$lang->edit_sig_note2 = $lang->sprintf($lang->edit_sig_note2, $sigsmilies, $sigmycode, $sigimgcode, $sightml, $mybb->settings['siglength']);
| $lang->edit_sig_note2 = $lang->sprintf($lang->edit_sig_note2, $sigsmilies, $sigmycode, $sigimgcode, $sightml, $siglength);
|
if($mybb->settings['sigmycode'] != 0 && $mybb->settings['bbcodeinserter'] != 0 && $mybb->user['showcodebuttons'] != 0) {
| if($mybb->settings['sigmycode'] != 0 && $mybb->settings['bbcodeinserter'] != 0 && $mybb->user['showcodebuttons'] != 0) {
|
Zeile 2463 | Zeile 2479 |
---|
error_no_permission(); } $avatar = upload_avatar();
|
error_no_permission(); } $avatar = upload_avatar();
|
if($avatar['error'])
| if(!empty($avatar['error']))
|
{ $avatar_error = $avatar['error']; }
| { $avatar_error = $avatar['error']; }
|
Zeile 2480 | Zeile 2496 |
---|
); $db->update_query("users", $updated_avatar, "uid='".$mybb->user['uid']."'"); }
|
); $db->update_query("users", $updated_avatar, "uid='".$mybb->user['uid']."'"); }
|
| } elseif(!$mybb->settings['allowremoteavatars'] && !$_FILES['avatarupload']['name']) // missing avatar image { $avatar_error = $lang->error_avatarimagemissing;
|
} elseif($mybb->settings['allowremoteavatars']) // remote avatar {
| } elseif($mybb->settings['allowremoteavatars']) // remote avatar {
|
Zeile 2505 | Zeile 2525 |
---|
// Rating? $types = array('g', 'pg', 'r', 'x'); $rating = $mybb->settings['useravatarrating'];
|
// Rating? $types = array('g', 'pg', 'r', 'x'); $rating = $mybb->settings['useravatarrating'];
|
|
|
if(!in_array($rating, $types)) { $rating = 'g'; }
|
if(!in_array($rating, $types)) { $rating = 'g'; }
|
|
|
$s = "?s={$maxheight}&r={$rating}&d=mm";
$updated_avatar = array(
| $s = "?s={$maxheight}&r={$rating}&d=mm";
$updated_avatar = array(
|
Zeile 2520 | Zeile 2540 |
---|
);
$db->update_query("users", $updated_avatar, "uid = '{$mybb->user['uid']}'");
|
);
$db->update_query("users", $updated_avatar, "uid = '{$mybb->user['uid']}'");
|
}
| }
|
else { $mybb->input['avatarurl'] = preg_replace("#script:#i", "", $mybb->get_input('avatarurl'));
| else { $mybb->input['avatarurl'] = preg_replace("#script:#i", "", $mybb->get_input('avatarurl'));
|
Zeile 2664 | Zeile 2684 |
---|
if(!empty($mybb->user['avatar'])) { eval("\$removeavatar = \"".$templates->get("usercp_avatar_remove")."\";");
|
if(!empty($mybb->user['avatar'])) { eval("\$removeavatar = \"".$templates->get("usercp_avatar_remove")."\";");
|
}
$plugins->run_hooks("usercp_avatar_end");
| }
$plugins->run_hooks("usercp_avatar_end");
|
if(!isset($avatar_error))
|
if(!isset($avatar_error))
|
{
| {
|
$avatar_error = ''; }
| $avatar_error = ''; }
|
Zeile 2686 | Zeile 2706 |
---|
$query = $db->simple_select('buddyrequests', '*', 'id='.$mybb->get_input('id', MyBB::INPUT_INT).' AND touid='.(int)$mybb->user['uid']); $request = $db->fetch_array($query); if(empty($request))
|
$query = $db->simple_select('buddyrequests', '*', 'id='.$mybb->get_input('id', MyBB::INPUT_INT).' AND touid='.(int)$mybb->user['uid']); $request = $db->fetch_array($query); if(empty($request))
|
{
| {
|
error($lang->invalid_request); }
| error($lang->invalid_request); }
|
Zeile 2697 | Zeile 2717 |
---|
{ // We want to add us to this user's buddy list if($user['buddylist'] != '')
|
{ // We want to add us to this user's buddy list if($user['buddylist'] != '')
|
{
| {
|
$user['buddylist'] = explode(',', $user['buddylist']); } else
| $user['buddylist'] = explode(',', $user['buddylist']); } else
|
Zeile 2709 | Zeile 2729 |
---|
// Now we have the new list, so throw it all back together $new_list = implode(",", $user['buddylist']);
|
// Now we have the new list, so throw it all back together $new_list = implode(",", $user['buddylist']);
|
// And clean it up a little to ensure there is no possibility of bad values $new_list = preg_replace("#,{2,}#", ",", $new_list); $new_list = preg_replace("#[^0-9,]#", "", $new_list);
if(my_substr($new_list, 0, 1) == ",") { $new_list = my_substr($new_list, 1);
| // And clean it up a little to ensure there is no possibility of bad values $new_list = preg_replace("#,{2,}#", ",", $new_list); $new_list = preg_replace("#[^0-9,]#", "", $new_list);
if(my_substr($new_list, 0, 1) == ",") { $new_list = my_substr($new_list, 1);
|
} if(my_substr($new_list, -1) == ",") {
| } if(my_substr($new_list, -1) == ",") {
|
Zeile 2813 | Zeile 2833 |
---|
}
elseif($mybb->input['action'] == "cancelrequest")
|
}
elseif($mybb->input['action'] == "cancelrequest")
|
{ // Verify incoming POST request
| { // Verify incoming POST request
|
verify_post_check($mybb->get_input('my_post_key'));
// Validate request
| verify_post_check($mybb->get_input('my_post_key'));
// Validate request
|
Zeile 2826 | Zeile 2846 |
---|
}
$plugins->run_hooks("usercp_cancelrequest_start");
|
}
$plugins->run_hooks("usercp_cancelrequest_start");
|
|
|
$db->delete_query('buddyrequests', 'id='.(int)$request['id']);
$plugins->run_hooks("usercp_cancelrequest_end");
| $db->delete_query('buddyrequests', 'id='.(int)$request['id']);
$plugins->run_hooks("usercp_cancelrequest_end");
|
Zeile 2838 | Zeile 2858 |
---|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
|
|
$plugins->run_hooks("usercp_do_editlists_start");
$existing_users = array(); $selected_list = array(); if($mybb->get_input('manage') == "ignored")
|
$plugins->run_hooks("usercp_do_editlists_start");
$existing_users = array(); $selected_list = array(); if($mybb->get_input('manage') == "ignored")
|
{
| {
|
if($mybb->user['ignorelist']) { $existing_users = explode(",", $mybb->user['ignorelist']); }
|
if($mybb->user['ignorelist']) { $existing_users = explode(",", $mybb->user['ignorelist']); }
|
if($mybb->user['buddylist'])
| if($mybb->user['buddylist'])
|
{ // Create a list of buddies... $selected_list = explode(",", $mybb->user['buddylist']);
| { // Create a list of buddies... $selected_list = explode(",", $mybb->user['buddylist']);
|
Zeile 2861 | Zeile 2881 |
---|
if($mybb->user['buddylist']) { $existing_users = explode(",", $mybb->user['buddylist']);
|
if($mybb->user['buddylist']) { $existing_users = explode(",", $mybb->user['buddylist']);
|
}
| }
|
if($mybb->user['ignorelist']) { // Create a list of ignored users
| if($mybb->user['ignorelist']) { // Create a list of ignored users
|
Zeile 2955 | Zeile 2975 |
---|
}
$error_message = $lang->$string;
|
}
$error_message = $lang->$string;
|
array_pop($users); // To maintain a proper count when we call count($users) continue; }
| array_pop($users); // To maintain a proper count when we call count($users) continue; }
|
if(isset($requests[$user['uid']])) { if($mybb->get_input('manage') != "ignored")
| if(isset($requests[$user['uid']])) { if($mybb->get_input('manage') != "ignored")
|
Zeile 3053 | Zeile 3073 |
---|
}
if($adding_self == true)
|
}
if($adding_self == true)
|
{
| {
|
if($mybb->get_input('manage') == "ignored") { $error_message = $lang->cant_add_self_to_ignore_list; } else
|
if($mybb->get_input('manage') == "ignored") { $error_message = $lang->cant_add_self_to_ignore_list; } else
|
{
| {
|
$error_message = $lang->cant_add_self_to_buddy_list; } }
if(count($existing_users) == 0)
|
$error_message = $lang->cant_add_self_to_buddy_list; } }
if(count($existing_users) == 0)
|
{
| {
|
$message = "";
if($sent === true)
| $message = "";
if($sent === true)
|
Zeile 3095 | Zeile 3115 |
---|
{ $user['buddylist'] = array(); }
|
{ $user['buddylist'] = array(); }
|
|
|
$key = array_search($mybb->get_input('delete', MyBB::INPUT_INT), $user['buddylist']); unset($user['buddylist'][$key]);
// Now we have the new list, so throw it all back together $new_list = implode(",", $user['buddylist']);
|
$key = array_search($mybb->get_input('delete', MyBB::INPUT_INT), $user['buddylist']); unset($user['buddylist'][$key]);
// Now we have the new list, so throw it all back together $new_list = implode(",", $user['buddylist']);
|
|
|
// And clean it up a little to ensure there is no possibility of bad values $new_list = preg_replace("#,{2,}#", ",", $new_list); $new_list = preg_replace("#[^0-9,]#", "", $new_list);
| // And clean it up a little to ensure there is no possibility of bad values $new_list = preg_replace("#,{2,}#", ",", $new_list); $new_list = preg_replace("#[^0-9,]#", "", $new_list);
|
Zeile 3197 | Zeile 3217 |
---|
{ echo "\$(\"#".$mybb->get_input('manage')."_count\").html(\"0\");\n"; echo "\$(\"#buddylink\").remove();\n";
|
{ echo "\$(\"#".$mybb->get_input('manage')."_count\").html(\"0\");\n"; echo "\$(\"#buddylink\").remove();\n";
|
|
|
if($mybb->get_input('manage') == "ignored") { echo "\$(\"#ignore_list\").html(\"<li>{$lang->ignore_list_empty}</li>\");\n";
| if($mybb->get_input('manage') == "ignored") { echo "\$(\"#ignore_list\").html(\"<li>{$lang->ignore_list_empty}</li>\");\n";
|
Zeile 3326 | Zeile 3346 |
---|
eval("\$sent_requests = \"".$templates->get("usercp_editlists_sent_requests", 1, 0)."\";");
|
eval("\$sent_requests = \"".$templates->get("usercp_editlists_sent_requests", 1, 0)."\";");
|
echo $sentrequests;
| |
echo $sent_requests."<script type=\"text/javascript\">{$message_js}</script>"; } else
| echo $sent_requests."<script type=\"text/javascript\">{$message_js}</script>"; } else
|
Zeile 3338 | Zeile 3357 |
---|
exit; }
|
exit; }
|
$received_rows = '';
| $received_rows = $bgcolor = '';
|
$query = $db->query(" SELECT r.*, u.username FROM ".TABLE_PREFIX."buddyrequests r
| $query = $db->query(" SELECT r.*, u.username FROM ".TABLE_PREFIX."buddyrequests r
|
Zeile 3360 | Zeile 3379 |
---|
eval("\$received_requests = \"".$templates->get("usercp_editlists_received_requests")."\";");
|
eval("\$received_requests = \"".$templates->get("usercp_editlists_received_requests")."\";");
|
$sent_rows = '';
| $sent_rows = $bgcolor = '';
|
$query = $db->query(" SELECT r.*, u.username FROM ".TABLE_PREFIX."buddyrequests r
| $query = $db->query(" SELECT r.*, u.username FROM ".TABLE_PREFIX."buddyrequests r
|
Zeile 3407 | Zeile 3426 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=t.fid) WHERE p.uid = '{$mybb->user['uid']}' AND p.visible = '-2'
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=t.fid) WHERE p.uid = '{$mybb->user['uid']}' AND p.visible = '-2'
|
ORDER BY p.dateline DESC
| ORDER BY p.dateline DESC, p.pid DESC
|
");
while($draft = $db->fetch_array($query))
| ");
while($draft = $db->fetch_array($query))
|
Zeile 3482 | Zeile 3501 |
---|
$tidin = implode(",", $tidin); $db->delete_query("threads", "tid IN ($tidin) AND visible='-2' AND uid='".$mybb->user['uid']."'"); $tidinp = "OR tid IN ($tidin)";
|
$tidin = implode(",", $tidin); $db->delete_query("threads", "tid IN ($tidin) AND visible='-2' AND uid='".$mybb->user['uid']."'"); $tidinp = "OR tid IN ($tidin)";
|
| } else { $tidinp = '';
|
} if($pidin || $tidinp) {
| } if($pidin || $tidinp) {
|
Zeile 3496 | Zeile 3519 |
---|
$pidinq = "1=0"; } $db->delete_query("posts", "($pidinq $tidinp) AND visible='-2' AND uid='".$mybb->user['uid']."'");
|
$pidinq = "1=0"; } $db->delete_query("posts", "($pidinq $tidinp) AND visible='-2' AND uid='".$mybb->user['uid']."'");
|
}
| }
|
$plugins->run_hooks("usercp_do_drafts_end"); redirect("usercp.php?action=drafts", $lang->selected_drafts_deleted); }
| $plugins->run_hooks("usercp_do_drafts_end"); redirect("usercp.php?action=drafts", $lang->selected_drafts_deleted); }
|
Zeile 3516 | Zeile 3539 |
---|
verify_post_check($mybb->get_input('my_post_key'));
if(my_strpos($ingroups, ",".$mybb->input['displaygroup'].",") === false)
|
verify_post_check($mybb->get_input('my_post_key'));
if(my_strpos($ingroups, ",".$mybb->input['displaygroup'].",") === false)
|
{
| {
|
error($lang->not_member_of_group); }
| error($lang->not_member_of_group); }
|
Zeile 3534 | Zeile 3557 |
---|
// Leaving a group if($mybb->get_input('leavegroup', MyBB::INPUT_INT))
|
// Leaving a group if($mybb->get_input('leavegroup', MyBB::INPUT_INT))
|
{ // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
| { // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
if(my_strpos($ingroups, ",".$mybb->get_input('leavegroup', MyBB::INPUT_INT).",") === false) { error($lang->not_member_of_group);
| if(my_strpos($ingroups, ",".$mybb->get_input('leavegroup', MyBB::INPUT_INT).",") === false) { error($lang->not_member_of_group);
|
Zeile 3598 | Zeile 3621 |
---|
$query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."' AND gid='".$mybb->get_input('joingroup', MyBB::INPUT_INT)."'"); $joinrequest = $db->fetch_array($query);
|
$query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."' AND gid='".$mybb->get_input('joingroup', MyBB::INPUT_INT)."'"); $joinrequest = $db->fetch_array($query);
|
if($joinrequest['rid'])
| if($joinrequest)
|
{ error($lang->already_sent_join_request); }
| { error($lang->already_sent_join_request); }
|
Zeile 3606 | Zeile 3629 |
---|
if($mybb->get_input('do') == "joingroup" && $usergroup['type'] == 4) { $reasonlength = my_strlen($mybb->get_input('reason'));
|
if($mybb->get_input('do') == "joingroup" && $usergroup['type'] == 4) { $reasonlength = my_strlen($mybb->get_input('reason'));
|
|
|
if($reasonlength > 250) // Reason field is varchar(250) in database { error($lang->sprintf($lang->joinreason_too_long, ($reasonlength - 250)));
|
if($reasonlength > 250) // Reason field is varchar(250) in database { error($lang->sprintf($lang->joinreason_too_long, ($reasonlength - 250)));
|
}
| }
|
$now = TIME_NOW; $joinrequest = array( "uid" => $mybb->user['uid'],
| $now = TIME_NOW; $joinrequest = array( "uid" => $mybb->user['uid'],
|
Zeile 3621 | Zeile 3644 |
---|
);
$db->insert_query("joinrequests", $joinrequest);
|
);
$db->insert_query("joinrequests", $joinrequest);
|
|
|
if(array_key_exists($usergroup['gid'], $groupleaders)) { foreach($groupleaders[$usergroup['gid']] as $leader)
| if(array_key_exists($usergroup['gid'], $groupleaders)) { foreach($groupleaders[$usergroup['gid']] as $leader)
|
Zeile 3645 | Zeile 3668 |
---|
exit; } elseif($usergroup['type'] == 4)
|
exit; } elseif($usergroup['type'] == 4)
|
{
| {
|
$joingroup = $mybb->get_input('joingroup', MyBB::INPUT_INT); eval("\$joinpage = \"".$templates->get("usercp_usergroups_joingroup")."\";"); output_page($joinpage);
| $joingroup = $mybb->get_input('joingroup', MyBB::INPUT_INT); eval("\$joinpage = \"".$templates->get("usercp_usergroups_joingroup")."\";"); output_page($joinpage);
|
Zeile 3674 | Zeile 3697 |
---|
$query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."' AND gid='".$mybb->get_input('acceptinvite', MyBB::INPUT_INT)."' AND invite='1'"); $joinrequest = $db->fetch_array($query);
|
$query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."' AND gid='".$mybb->get_input('acceptinvite', MyBB::INPUT_INT)."' AND invite='1'"); $joinrequest = $db->fetch_array($query);
|
if($joinrequest['rid'])
| if($joinrequest)
|
{ join_usergroup($mybb->user['uid'], $mybb->get_input('acceptinvite', MyBB::INPUT_INT)); $db->delete_query("joinrequests", "uid='{$mybb->user['uid']}' AND gid='".$mybb->get_input('acceptinvite', MyBB::INPUT_INT)."'");
| { join_usergroup($mybb->user['uid'], $mybb->get_input('acceptinvite', MyBB::INPUT_INT)); $db->delete_query("joinrequests", "uid='{$mybb->user['uid']}' AND gid='".$mybb->get_input('acceptinvite', MyBB::INPUT_INT)."'");
|
Zeile 3745 | Zeile 3768 |
---|
$usergroup = $usergroups[$mybb->user['usergroup']]; $usergroup['title'] = htmlspecialchars_uni($usergroup['title']); $usergroup['usertitle'] = htmlspecialchars_uni($usergroup['usertitle']);
|
$usergroup = $usergroups[$mybb->user['usergroup']]; $usergroup['title'] = htmlspecialchars_uni($usergroup['title']); $usergroup['usertitle'] = htmlspecialchars_uni($usergroup['usertitle']);
|
$usergroup['description'] = htmlspecialchars_uni($usergroup['description']);
| if($usergroup['description']) { $usergroup['description'] = htmlspecialchars_uni($usergroup['description']); eval("\$description = \"".$templates->get("usercp_usergroups_memberof_usergroup_description")."\";"); }
|
eval("\$leavelink = \"".$templates->get("usercp_usergroups_memberof_usergroup_leaveprimary")."\";"); $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
| eval("\$leavelink = \"".$templates->get("usercp_usergroups_memberof_usergroup_leaveprimary")."\";"); $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
|
Zeile 3753 | Zeile 3780 |
---|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";"); } elseif($usergroup['candisplaygroup'] == 1)
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";"); } elseif($usergroup['candisplaygroup'] == 1)
|
{
| {
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";");
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";");
|
}
| }
|
else { $displaycode = '';
| else { $displaycode = '';
|
Zeile 3765 | Zeile 3792 |
---|
$showmemberof = false; if($mybb->user['additionalgroups']) {
|
$showmemberof = false; if($mybb->user['additionalgroups']) {
|
$query = $db->simple_select("usergroups", "*", "gid IN (".$mybb->user['additionalgroups'].") AND gid !='".$mybb->user['usergroup']."'", array('order_by' => 'title'));
| $additionalgroups = implode( ',', array_map( 'intval', explode(',', $mybb->user['additionalgroups']) ) ); $query = $db->simple_select("usergroups", "*", "gid IN (".$additionalgroups.") AND gid !='".$mybb->user['usergroup']."'", array('order_by' => 'title'));
|
while($usergroup = $db->fetch_array($query)) { $showmemberof = true;
| while($usergroup = $db->fetch_array($query)) { $showmemberof = true;
|
Zeile 3820 | Zeile 3854 |
---|
$existinggroups = $mybb->user['usergroup']; if($mybb->user['additionalgroups']) {
|
$existinggroups = $mybb->user['usergroup']; if($mybb->user['additionalgroups']) {
|
$existinggroups .= ",".$mybb->user['additionalgroups'];
| $additionalgroups = implode( ',', array_map( 'intval', explode(',', $mybb->user['additionalgroups']) ) ); $existinggroups .= ",".$additionalgroups;
|
}
$joinablegroups = $joinablegrouplist = '';
| }
$joinablegroups = $joinablegrouplist = '';
|
Zeile 3835 | Zeile 3876 |
---|
{ $usergroup['description'] = htmlspecialchars_uni($usergroup['description']); eval("\$description = \"".$templates->get("usercp_usergroups_joinable_usergroup_description")."\";");
|
{ $usergroup['description'] = htmlspecialchars_uni($usergroup['description']); eval("\$description = \"".$templates->get("usercp_usergroups_joinable_usergroup_description")."\";");
|
}
| }
|
// Moderating join requests? if($usergroup['type'] == 4) { $conditions = $lang->usergroup_joins_moderated;
|
// Moderating join requests? if($usergroup['type'] == 4) { $conditions = $lang->usergroup_joins_moderated;
|
}
| }
|
elseif($usergroup['type'] == 5) { $conditions = $lang->usergroup_joins_invite;
| elseif($usergroup['type'] == 5) { $conditions = $lang->usergroup_joins_invite;
|
Zeile 3861 | Zeile 3902 |
---|
$joinlink = $lang->sprintf($lang->pending_invitation, $usergroup['gid'], $mybb->post_code); } elseif($usergroup['type'] == 5)
|
$joinlink = $lang->sprintf($lang->pending_invitation, $usergroup['gid'], $mybb->post_code); } elseif($usergroup['type'] == 5)
|
{
| {
|
$joinlink = "--"; } else
| $joinlink = "--"; } else
|
Zeile 3892 | Zeile 3933 |
---|
if($joinablegrouplist) { eval("\$joinablegroups = \"".$templates->get("usercp_usergroups_joinable")."\";");
|
if($joinablegrouplist) { eval("\$joinablegroups = \"".$templates->get("usercp_usergroups_joinable")."\";");
|
}
$plugins->run_hooks("usercp_usergroups_end");
| }
$plugins->run_hooks("usercp_usergroups_end");
|
eval("\$groupmemberships = \"".$templates->get("usercp_usergroups")."\";"); output_page($groupmemberships); }
| eval("\$groupmemberships = \"".$templates->get("usercp_usergroups")."\";"); output_page($groupmemberships); }
|
Zeile 3907 | Zeile 3948 |
---|
if($mybb->settings['enableattachments'] == 0) { error($lang->attachments_disabled);
|
if($mybb->settings['enableattachments'] == 0) { error($lang->attachments_disabled);
|
}
$plugins->run_hooks("usercp_attachments_start");
// Get unviewable forums $f_perm_sql = ''; $unviewable_forums = get_unviewable_forums(true); $inactiveforums = get_inactive_forums();
| }
$plugins->run_hooks("usercp_attachments_start");
// Get unviewable forums $f_perm_sql = ''; $unviewable_forums = get_unviewable_forums(true); $inactiveforums = get_inactive_forums();
|
if($unviewable_forums) { $f_perm_sql = " AND t.fid NOT IN ($unviewable_forums)";
| if($unviewable_forums) { $f_perm_sql = " AND t.fid NOT IN ($unviewable_forums)";
|
Zeile 3954 | Zeile 3995 |
---|
LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE a.uid='".$mybb->user['uid']."' {$f_perm_sql}
|
LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) WHERE a.uid='".$mybb->user['uid']."' {$f_perm_sql}
|
ORDER BY p.dateline DESC LIMIT {$start}, {$perpage}
| ORDER BY p.dateline DESC, p.pid DESC LIMIT {$start}, {$perpage}
|
");
$bandwidth = $totaldownloads = $totalusage = $totalattachments = $processedattachments = 0;
| ");
$bandwidth = $totaldownloads = $totalusage = $totalattachments = $processedattachments = 0;
|
Zeile 3991 | Zeile 4032 |
---|
++$processedattachments; }
|
++$processedattachments; }
|
| $multipage = '';
|
if($processedattachments >= $perpage || $page > 1) { $query = $db->query("
| if($processedattachments >= $perpage || $page > 1) { $query = $db->query("
|
Zeile 4022 | Zeile 4064 |
---|
}
$bandwidth = get_friendly_size($bandwidth);
|
}
$bandwidth = get_friendly_size($bandwidth);
|
| eval("\$delete_button = \"".$templates->get("delete_attachments_button")."\";");
|
if(!$attachments) { eval("\$attachments = \"".$templates->get("usercp_attachments_none")."\";"); $usagenote = '';
|
if(!$attachments) { eval("\$attachments = \"".$templates->get("usercp_attachments_none")."\";"); $usagenote = '';
|
| $delete_button = '';
|
}
$plugins->run_hooks("usercp_attachments_end");
| }
$plugins->run_hooks("usercp_attachments_end");
|
Zeile 4119 | Zeile 4164 |
---|
$percent = "0"; } else
|
$percent = "0"; } else
|
{
| {
|
$percent = $mybb->user['postnum']*100/$posts; $percent = round($percent, 2); }
| $percent = $mybb->user['postnum']*100/$posts; $percent = round($percent, 2); }
|
Zeile 4131 | Zeile 4176 |
---|
$useravatar = format_avatar($mybb->user['avatar'], $mybb->user['avatardimensions'], '100x100'); $avatar_username = htmlspecialchars_uni($mybb->user['username']); eval("\$avatar = \"".$templates->get("usercp_currentavatar")."\";");
|
$useravatar = format_avatar($mybb->user['avatar'], $mybb->user['avatardimensions'], '100x100'); $avatar_username = htmlspecialchars_uni($mybb->user['username']); eval("\$avatar = \"".$templates->get("usercp_currentavatar")."\";");
|
| $mybb->user['email'] = htmlspecialchars_uni($mybb->user['email']);
|
$usergroup = htmlspecialchars_uni($groupscache[$mybb->user['usergroup']]['title']); if($mybb->user['usergroup'] == 5 && $mybb->settings['regtype'] != "admin")
| $usergroup = htmlspecialchars_uni($groupscache[$mybb->user['usergroup']]['title']); if($mybb->user['usergroup'] == 5 && $mybb->settings['regtype'] != "admin")
|
Zeile 4138 | Zeile 4185 |
---|
eval("\$usergroup .= \"".$templates->get("usercp_resendactivation")."\";"); } // Make reputations row
|
eval("\$usergroup .= \"".$templates->get("usercp_resendactivation")."\";"); } // Make reputations row
|
$reputations = '';
| $reputation = '';
|
if($mybb->usergroup['usereputationsystem'] == 1 && $mybb->settings['enablereputation'] == 1) { $reputation_link = get_reputation($mybb->user['reputation']);
| if($mybb->usergroup['usereputationsystem'] == 1 && $mybb->settings['enablereputation'] == 1) { $reputation_link = get_reputation($mybb->user['reputation']);
|
Zeile 4247 | Zeile 4294 |
---|
$mybb->user['posts'] = my_number_format($mybb->user['postnum']);
// Build referral link
|
$mybb->user['posts'] = my_number_format($mybb->user['postnum']);
// Build referral link
|
| $referral_info = '';
|
if($mybb->settings['usereferrals'] == 1) { $referral_link = $lang->sprintf($lang->referral_link, $settings['bburl'], $mybb->user['uid']);
| if($mybb->settings['usereferrals'] == 1) { $referral_link = $lang->sprintf($lang->referral_link, $settings['bburl'], $mybb->user['uid']);
|
Zeile 4256 | Zeile 4304 |
---|
{ $uid = (int) $mybb->user['uid']; eval("\$mybb->user['referrals'] = \"".$templates->get('member_referrals_link')."\";");
|
{ $uid = (int) $mybb->user['uid']; eval("\$mybb->user['referrals'] = \"".$templates->get('member_referrals_link')."\";");
|
}
| }
|
eval("\$referral_info = \"".$templates->get("usercp_referrals")."\";"); }
|
eval("\$referral_info = \"".$templates->get("usercp_referrals")."\";"); }
|
|
|
// User Notepad $plugins->run_hooks("usercp_notepad_start"); $mybb->user['notepad'] = htmlspecialchars_uni($mybb->user['notepad']);
| // User Notepad $plugins->run_hooks("usercp_notepad_start"); $mybb->user['notepad'] = htmlspecialchars_uni($mybb->user['notepad']);
|
Zeile 4272 | Zeile 4320 |
---|
$query = $db->simple_select("threadsubscriptions", "sid", "uid = '".$mybb->user['uid']."'", array("limit" => 1)); if($db->num_rows($query)) {
|
$query = $db->simple_select("threadsubscriptions", "sid", "uid = '".$mybb->user['uid']."'", array("limit" => 1)); if($db->num_rows($query)) {
|
$visible = "AND t.visible != 0"; if(is_moderator() == true) { $visible = '';
| $where = array( "s.uid={$mybb->user['uid']}", "t.lastposteruid!={$mybb->user['uid']}", get_visible_where('t') );
if($unviewable_forums = get_unviewable_forums(true)) { $where[] = "t.fid NOT IN ({$unviewable_forums})"; } if($inactive_forums = get_inactive_forums()) { $where[] = "t.fid NOT IN ({$inactive_forums})";
|
}
|
}
|
| $where = implode(' AND ', $where);
|
$query = $db->query(" SELECT s.*, t.*, t.username AS threadusername, u.username FROM ".TABLE_PREFIX."threadsubscriptions s LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
$query = $db->query(" SELECT s.*, t.*, t.username AS threadusername, u.username FROM ".TABLE_PREFIX."threadsubscriptions s LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
WHERE s.uid='".$mybb->user['uid']."' {$visible}
| WHERE {$where}
|
ORDER BY t.lastpost DESC LIMIT 0, 10 ");
|
ORDER BY t.lastpost DESC LIMIT 0, 10 ");
|
| $subscriptions = array();
|
$fpermissions = forum_permissions();
|
$fpermissions = forum_permissions();
|
|
|
while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
if($forumpermissions['canview'] != 0 && $forumpermissions['canviewthreads'] != 0 && ($forumpermissions['canonlyviewownthreads'] == 0 || $subscription['uid'] == $mybb->user['uid']))
| if(!isset($forumpermissions['canonlyviewownthreads']) || $forumpermissions['canonlyviewownthreads'] == 0 || $subscription['uid'] == $mybb->user['uid'])
|
{ $subscriptions[$subscription['tid']] = $subscription; } }
|
{ $subscriptions[$subscription['tid']] = $subscription; } }
|
if(is_array($subscriptions))
| if($subscriptions)
|
{ $tids = implode(",", array_keys($subscriptions));
| { $tids = implode(",", array_keys($subscriptions));
|
Zeile 4332 | Zeile 4395 |
---|
$icon_cache = $cache->read("posticons"); $threadprefixes = build_prefixes();
|
$icon_cache = $cache->read("posticons"); $threadprefixes = build_prefixes();
|
| $latest_subscribed_threads = '';
|
foreach($subscriptions as $thread) {
| foreach($subscriptions as $thread) {
|
Zeile 4340 | Zeile 4404 |
---|
$folder_label = ''; $gotounread = '';
|
$folder_label = ''; $gotounread = '';
|
if($thread['tid'])
| if(!empty($thread['tid']))
|
{ $bgcolor = alt_trow(); $thread['subject'] = $parser->parse_badwords($thread['subject']);
| { $bgcolor = alt_trow(); $thread['subject'] = $parser->parse_badwords($thread['subject']);
|
Zeile 4372 | Zeile 4436 |
---|
$icon = " "; }
|
$icon = " "; }
|
if($thread['doticon'])
| if(!isset($thread['doticon']))
|
{ $folder = "dot_"; $folder_label .= $lang->icon_dot; }
// Check to see which icon we display
|
{ $folder = "dot_"; $folder_label .= $lang->icon_dot; }
// Check to see which icon we display
|
if($thread['lastread'] && $thread['lastread'] < $thread['lastpost'])
| if(!empty($thread['lastread']) && $thread['lastread'] < $thread['lastpost'])
|
{ $folder .= "new"; $folder_label .= $lang->icon_new;
| { $folder .= "new"; $folder_label .= $lang->icon_new;
|
Zeile 4434 | Zeile 4498 |
---|
}
// User's Latest Threads
|
}
// User's Latest Threads
|
| $where = array( "t.uid={$mybb->user['uid']}", get_visible_where('t') );
if($unviewable_forums = get_unviewable_forums(true)) { $where[] = "t.fid NOT IN ({$unviewable_forums})"; }
if($inactive_forums = get_inactive_forums()) { $where[] = "t.fid NOT IN ({$inactive_forums})"; }
$where = implode(' AND ', $where);
|
|
|
// Get unviewable forums $f_perm_sql = ''; $unviewable_forums = get_unviewable_forums(); $inactiveforums = get_inactive_forums(); if($unviewable_forums) { $f_perm_sql = " AND t.fid NOT IN ($unviewable_forums)"; } if($inactiveforums) { $f_perm_sql .= " AND t.fid NOT IN ($inactiveforums)"; }
$visible = " AND t.visible != 0"; if(is_moderator() == true) { $visible = ''; }
| |
$query = $db->query(" SELECT t.*, t.username AS threadusername, u.username FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
$query = $db->query(" SELECT t.*, t.username AS threadusername, u.username FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid)
|
WHERE t.uid='".$mybb->user['uid']."' AND t.firstpost != 0 AND t.visible >= 0 {$visible}{$f_perm_sql}
| WHERE {$where}
|
ORDER BY t.lastpost DESC LIMIT 0, 5 ");
|
ORDER BY t.lastpost DESC LIMIT 0, 5 ");
|
|
|
// Figure out whether we can view these threads... $threadcache = array(); $fpermissions = forum_permissions(); while($thread = $db->fetch_array($query)) {
|
// Figure out whether we can view these threads... $threadcache = array(); $fpermissions = forum_permissions(); while($thread = $db->fetch_array($query)) {
|
// Moderated, and not moderator? if($thread['visible'] == 0 && is_moderator($thread['fid'], "canviewunapprove") === false) { continue; }
$forumpermissions = $fpermissions[$thread['fid']]; if($forumpermissions['canview'] != 0 || $forumpermissions['canviewthreads'] != 0) { $threadcache[$thread['tid']] = $thread; }
| $threadcache[$thread['tid']] = $thread;
|
}
$latest_threads = '';
| }
$latest_threads = '';
|
Zeile 4528 | Zeile 4579 |
---|
$latest_threads_threads = ''; foreach($threadcache as $thread) {
|
$latest_threads_threads = ''; foreach($threadcache as $thread) {
|
$plugins->run_hooks("usercp_latest_threads_thread"); if($thread['tid'])
| $plugins->run_hooks("usercp_latest_threads_thread"); if(!empty($thread['tid']))
|
{ $bgcolor = alt_trow(); $folder = '';
| { $bgcolor = alt_trow(); $folder = '';
|
Zeile 4590 | Zeile 4641 |
---|
$cutoff = 0; if($thread['lastpost'] > $cutoff) {
|
$cutoff = 0; if($thread['lastpost'] > $cutoff) {
|
if($thread['lastread'])
| if(!empty($thread['lastread']))
|
{ $lastread = $thread['lastread']; }
| { $lastread = $thread['lastread']; }
|
Zeile 4610 | Zeile 4661 |
---|
}
// Folder Icons
|
}
// Folder Icons
|
if($thread['doticon'])
| if(!empty($thread['doticon']))
|
{ $folder = "dot_"; $folder_label .= $lang->icon_dot;
| { $folder = "dot_"; $folder_label .= $lang->icon_dot;
|