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"); if($mybb->input['action'] == "do_editsig" && $mybb->request_method == "post")
|
}
$plugins->run_hooks("usercp_start"); if($mybb->input['action'] == "do_editsig" && $mybb->request_method == "post")
|
{
| {
|
require_once MYBB_ROOT."inc/datahandlers/user.php"; $userhandler = new UserDataHandler();
| require_once MYBB_ROOT."inc/datahandlers/user.php"; $userhandler = new UserDataHandler();
|
Zeile 116 | Zeile 121 |
---|
break; case "forumsubscriptions": add_breadcrumb($lang->ucp_nav_forum_subscriptions);
|
break; case "forumsubscriptions": add_breadcrumb($lang->ucp_nav_forum_subscriptions);
|
break;
| break;
|
case "editsig": case "do_editsig": add_breadcrumb($lang->nav_editsig);
| case "editsig": case "do_editsig": add_breadcrumb($lang->nav_editsig);
|
Zeile 124 | Zeile 129 |
---|
case "avatar": case "do_avatar": add_breadcrumb($lang->nav_avatar);
|
case "avatar": case "do_avatar": add_breadcrumb($lang->nav_avatar);
|
break;
| break;
|
case "notepad": case "do_notepad": add_breadcrumb($lang->ucp_nav_notepad);
|
case "notepad": case "do_notepad": add_breadcrumb($lang->ucp_nav_notepad);
|
break;
| break;
|
case "editlists": case "do_editlists": add_breadcrumb($lang->ucp_nav_editlists);
|
case "editlists": case "do_editlists": add_breadcrumb($lang->ucp_nav_editlists);
|
break;
| break;
|
case "drafts": add_breadcrumb($lang->ucp_nav_drafts); break;
| case "drafts": add_breadcrumb($lang->ucp_nav_drafts); break;
|
Zeile 157 | Zeile 162 |
---|
{ $awaydate = TIME_NOW; if(!empty($mybb->input['awayday']))
|
{ $awaydate = TIME_NOW; if(!empty($mybb->input['awayday']))
|
{
| {
|
// If the user has indicated that they will return on a specific day, but not month or year, assume it is current month and year if(!$mybb->get_input('awaymonth', MyBB::INPUT_INT)) {
| // If the user has indicated that they will return on a specific day, but not month or year, assume it is current month and year if(!$mybb->get_input('awaymonth', MyBB::INPUT_INT)) {
|
Zeile 191 | Zeile 196 |
---|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
"date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->get_input('awayreason')
|
); } else
| ); } else
|
{ $away = array( "away" => 0,
| { $away = array( "away" => 0,
|
Zeile 280 | Zeile 285 |
---|
$raw_errors = $userhandler->get_errors();
// Set to stored value if invalid
|
$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 {
| } else {
|
$userhandler->update_user();
$plugins->run_hooks("usercp_do_profile_end");
| $userhandler->update_user();
$plugins->run_hooks("usercp_do_profile_end");
|
Zeile 315 | Zeile 326 |
---|
{ $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");
| }
$plugins->run_hooks("usercp_profile_start");
|
Zeile 327 | Zeile 338 |
---|
for($day = 1; $day <= 31; ++$day) { if($bday[0] == $day)
|
for($day = 1; $day <= 31; ++$day) { if($bday[0] == $day)
|
{
| {
|
$selected = "selected=\"selected\""; } else { $selected = '';
|
$selected = "selected=\"selected\""; } else { $selected = '';
|
}
| }
|
eval("\$bdaydaysel .= \"".$templates->get("usercp_profile_day")."\";"); }
| eval("\$bdaydaysel .= \"".$templates->get("usercp_profile_day")."\";"); }
|
Zeile 349 | Zeile 360 |
---|
if($user['birthdayprivacy'] == 'all' || !$user['birthdayprivacy']) { $allselected = " selected=\"selected\"";
|
if($user['birthdayprivacy'] == 'all' || !$user['birthdayprivacy']) { $allselected = " selected=\"selected\"";
|
}
| }
|
elseif($user['birthdayprivacy'] == 'none')
|
elseif($user['birthdayprivacy'] == 'none')
|
{
| {
|
$noneselected = " selected=\"selected\"";
|
$noneselected = " selected=\"selected\"";
|
}
| }
|
elseif($user['birthdayprivacy'] == 'age') { $ageselected = " selected=\"selected\"";
|
elseif($user['birthdayprivacy'] == 'age') { $ageselected = " selected=\"selected\"";
|
}
| }
|
if(!my_validate_url($user['website']))
|
if(!my_validate_url($user['website']))
|
{
| {
|
$user['website'] = ''; } else { $user['website'] = htmlspecialchars_uni($user['website']);
|
$user['website'] = ''; } else { $user['website'] = htmlspecialchars_uni($user['website']);
|
}
| }
|
if($user['icq'] != "0")
|
if($user['icq'] != "0")
|
{
| {
|
$user['icq'] = (int)$user['icq']; }
if($user['icq'] == 0)
|
$user['icq'] = (int)$user['icq']; }
if($user['icq'] == 0)
|
{
| {
|
$user['icq'] = '';
|
$user['icq'] = '';
|
}
| }
|
if($errors) { $user['skype'] = htmlspecialchars_uni($user['skype']); $user['google'] = htmlspecialchars_uni($user['google']); }
|
if($errors) { $user['skype'] = htmlspecialchars_uni($user['skype']); $user['google'] = htmlspecialchars_uni($user['google']); }
|
|
|
$contact_fields = array(); $contactfields = ''; $cfieldsshow = false;
| $contact_fields = array(); $contactfields = ''; $cfieldsshow = false;
|
Zeile 400 | Zeile 411 |
---|
if(!is_member($mybb->settings[$csetting])) { continue;
|
if(!is_member($mybb->settings[$csetting])) { continue;
|
}
$cfieldsshow = true;
| }
$cfieldsshow = true;
|
$lang_string = 'contact_field_'.$cfield; $lang_string = $lang->{$lang_string};
| $lang_string = 'contact_field_'.$cfield; $lang_string = $lang->{$lang_string};
|
Zeile 422 | Zeile 433 |
---|
if($errors) { if($user['away'] == 1)
|
if($errors) { if($user['away'] == 1)
|
{ $awaycheck[1] = "checked=\"checked\""; } else { $awaycheck[0] = "checked=\"checked\""; }
| { $awaycheck[1] = "checked=\"checked\""; } else { $awaycheck[0] = "checked=\"checked\""; }
|
$returndate = array(); $returndate[0] = $mybb->get_input('awayday', MyBB::INPUT_INT); $returndate[1] = $mybb->get_input('awaymonth', MyBB::INPUT_INT);
| $returndate = array(); $returndate[0] = $mybb->get_input('awayday', MyBB::INPUT_INT); $returndate[1] = $mybb->get_input('awaymonth', MyBB::INPUT_INT);
|
Zeile 436 | Zeile 447 |
---|
$user['awayreason'] = htmlspecialchars_uni($mybb->get_input('awayreason')); } else
|
$user['awayreason'] = htmlspecialchars_uni($mybb->get_input('awayreason')); } else
|
{
| {
|
$user['awayreason'] = htmlspecialchars_uni($user['awayreason']); if($mybb->user['away'] == 1)
|
$user['awayreason'] = htmlspecialchars_uni($user['awayreason']); if($mybb->user['away'] == 1)
|
{
| {
|
$awaydate = my_date($mybb->settings['dateformat'], $mybb->user['awaydate']); $awaycheck[1] = "checked=\"checked\""; $awaynotice = $lang->sprintf($lang->away_notice_away, $awaydate);
|
$awaydate = my_date($mybb->settings['dateformat'], $mybb->user['awaydate']); $awaycheck[1] = "checked=\"checked\""; $awaynotice = $lang->sprintf($lang->away_notice_away, $awaydate);
|
} else {
| } else {
|
$awaynotice = $lang->away_notice; $awaycheck[0] = "checked=\"checked\""; }
| $awaynotice = $lang->away_notice; $awaycheck[0] = "checked=\"checked\""; }
|
Zeile 453 | Zeile 464 |
---|
if(!isset($returndate[1])) { $returndate[1] = 0;
|
if(!isset($returndate[1])) { $returndate[1] = 0;
|
}
| }
|
if(!isset($returndate[2])) { $returndate[2] = '';
| if(!isset($returndate[2])) { $returndate[2] = '';
|
Zeile 470 | Zeile 481 |
---|
else { $selected = '';
|
else { $selected = '';
|
}
| }
|
eval("\$returndatesel .= \"".$templates->get("usercp_profile_day")."\";"); }
| eval("\$returndatesel .= \"".$templates->get("usercp_profile_day")."\";"); }
|
Zeile 531 | Zeile 542 |
---|
if($type == "multiselect") { if($errors)
|
if($type == "multiselect") { if($errors)
|
{
| {
|
$useropts = $userfield;
|
$useropts = $userfield;
|
}
| }
|
else { $useropts = explode("\n", $userfield); } if(is_array($useropts))
|
else { $useropts = explode("\n", $userfield); } if(is_array($useropts))
|
{
| {
|
foreach($useropts as $key => $val) { $val = htmlspecialchars_uni($val); $seloptions[$val] = $val;
|
foreach($useropts as $key => $val) { $val = htmlspecialchars_uni($val); $seloptions[$val] = $val;
|
} } $expoptions = explode("\n", $options); if(is_array($expoptions))
| } } $expoptions = explode("\n", $options); if(is_array($expoptions))
|
{ foreach($expoptions as $key => $val) {
| { foreach($expoptions as $key => $val) {
|
Zeile 556 | Zeile 567 |
---|
$sel = ""; if(isset($seloptions[$val]) && $val == $seloptions[$val])
|
$sel = ""; if(isset($seloptions[$val]) && $val == $seloptions[$val])
|
{ $sel = " selected=\"selected\""; }
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) {
| { $sel = " selected=\"selected\""; }
eval("\$select .= \"".$templates->get("usercp_profile_profilefields_select_option")."\";"); } if(!$profilefield['length']) {
|
$profilefield['length'] = 3; }
| $profilefield['length'] = 3; }
|
Zeile 571 | Zeile 582 |
---|
} } elseif($type == "select")
|
} } elseif($type == "select")
|
{
| {
|
$expoptions = explode("\n", $options); if(is_array($expoptions)) {
| $expoptions = explode("\n", $options); if(is_array($expoptions)) {
|
Zeile 605 | Zeile 616 |
---|
{ $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 744 | Zeile 755 |
---|
if($mybb->usergroup['canchangewebsite'] == 1) { eval("\$website = \"".$templates->get("usercp_profile_website")."\";");
|
if($mybb->usergroup['canchangewebsite'] == 1) { eval("\$website = \"".$templates->get("usercp_profile_website")."\";");
|
}
| }
|
$plugins->run_hooks("usercp_profile_end");
eval("\$editprofile = \"".$templates->get("usercp_profile")."\";");
| $plugins->run_hooks("usercp_profile_end");
eval("\$editprofile = \"".$templates->get("usercp_profile")."\";");
|
Zeile 760 | Zeile 771 |
---|
$user = array();
$plugins->run_hooks("usercp_do_options_start");
|
$user = array();
$plugins->run_hooks("usercp_do_options_start");
|
|
|
// Set up user handler. require_once MYBB_ROOT."inc/datahandlers/user.php"; $userhandler = new UserDataHandler("update");
| // Set up user handler. require_once MYBB_ROOT."inc/datahandlers/user.php"; $userhandler = new UserDataHandler("update");
|
Zeile 800 | Zeile 811 |
---|
"showredirect" => $mybb->get_input('showredirect', MyBB::INPUT_INT), "classicpostbit" => $mybb->get_input('classicpostbit', MyBB::INPUT_INT) );
|
"showredirect" => $mybb->get_input('showredirect', MyBB::INPUT_INT), "classicpostbit" => $mybb->get_input('classicpostbit', MyBB::INPUT_INT) );
|
|
|
if($mybb->settings['usertppoptions'])
|
if($mybb->settings['usertppoptions'])
|
{
| {
|
$user['options']['tpp'] = $mybb->get_input('tpp', MyBB::INPUT_INT);
|
$user['options']['tpp'] = $mybb->get_input('tpp', MyBB::INPUT_INT);
|
}
| }
|
if($mybb->settings['userpppoptions']) { $user['options']['ppp'] = $mybb->get_input('ppp', MyBB::INPUT_INT);
|
if($mybb->settings['userpppoptions']) { $user['options']['ppp'] = $mybb->get_input('ppp', MyBB::INPUT_INT);
|
}
$userhandler->set_data($user);
if(!$userhandler->validate_user())
| }
$userhandler->set_data($user);
if(!$userhandler->validate_user())
|
{ $errors = $userhandler->get_friendly_errors(); $errors = inline_error($errors);
| { $errors = $userhandler->get_friendly_errors(); $errors = inline_error($errors);
|
Zeile 822 | Zeile 833 |
---|
else { $userhandler->update_user();
|
else { $userhandler->update_user();
|
|
|
$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);
|
Zeile 838 | Zeile 849 |
---|
else { $user = $mybb->user;
|
else { $user = $mybb->user;
|
}
| }
|
$plugins->run_hooks("usercp_options_start");
$languages = $lang->get_languages();
| $plugins->run_hooks("usercp_options_start");
$languages = $lang->get_languages();
|
Zeile 857 | Zeile 868 |
---|
}
eval('$langoptions .= "'.$templates->get('usercp_options_language_option').'";');
|
}
eval('$langoptions .= "'.$templates->get('usercp_options_language_option').'";');
|
}
| }
|
eval('$board_language = "'.$templates->get('usercp_options_language').'";'); }
| eval('$board_language = "'.$templates->get('usercp_options_language').'";'); }
|
Zeile 871 | Zeile 882 |
---|
{ $allownoticescheck = ""; }
|
{ $allownoticescheck = ""; }
|
if(isset($user['invisible']) && $user['invisible'] == 1) { $invisiblecheck = "checked=\"checked\""; } else { $invisiblecheck = "";
| $canbeinvisible = '';
// Check usergroup permission before showing invisible check box if($mybb->usergroup['canbeinvisible'] == 1) { 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) { $hideemailcheck = "checked=\"checked\"";
|
}
if(isset($user['hideemail']) && $user['hideemail'] == 1) { $hideemailcheck = "checked=\"checked\"";
|
} else
| } else
|
{ $hideemailcheck = ""; }
| { $hideemailcheck = ""; }
|
Zeile 894 | Zeile 912 |
---|
if(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 1) { $no_subscribe_selected = "selected=\"selected\"";
|
if(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 1) { $no_subscribe_selected = "selected=\"selected\"";
|
}
| }
|
elseif(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 2)
|
elseif(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 2)
|
{
| {
|
$instant_email_subscribe_selected = "selected=\"selected\"";
|
$instant_email_subscribe_selected = "selected=\"selected\"";
|
}
| }
|
elseif(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 3) { $instant_pm_subscribe_selected = "selected=\"selected\"";
|
elseif(isset($user['subscriptionmethod']) && $user['subscriptionmethod'] == 3) { $instant_pm_subscribe_selected = "selected=\"selected\"";
|
} else {
| } else {
|
$no_auto_subscribe_selected = "selected=\"selected\""; }
if(isset($user['showimages']) && $user['showimages'] == 1) { $showimagescheck = "checked=\"checked\"";
|
$no_auto_subscribe_selected = "selected=\"selected\""; }
if(isset($user['showimages']) && $user['showimages'] == 1) { $showimagescheck = "checked=\"checked\"";
|
}
| }
|
else
|
else
|
{
| {
|
$showimagescheck = ""; }
if(isset($user['showvideos']) && $user['showvideos'] == 1) { $showvideoscheck = "checked=\"checked\"";
|
$showimagescheck = ""; }
if(isset($user['showvideos']) && $user['showvideos'] == 1) { $showvideoscheck = "checked=\"checked\"";
|
}
| }
|
else
|
else
|
{
| {
|
$showvideoscheck = ""; }
if(isset($user['showsigs']) && $user['showsigs'] == 1) { $showsigscheck = "checked=\"checked\"";
|
$showvideoscheck = ""; }
if(isset($user['showsigs']) && $user['showsigs'] == 1) { $showsigscheck = "checked=\"checked\"";
|
}
| }
|
else { $showsigscheck = "";
| else { $showsigscheck = "";
|
Zeile 954 | Zeile 972 |
---|
}
if(isset($user['receivepms']) && $user['receivepms'] == 1)
|
}
if(isset($user['receivepms']) && $user['receivepms'] == 1)
|
{
| {
|
$receivepmscheck = "checked=\"checked\"";
|
$receivepmscheck = "checked=\"checked\"";
|
}
| }
|
else { $receivepmscheck = ""; }
if(isset($user['receivefrombuddy']) && $user['receivefrombuddy'] == 1)
|
else { $receivepmscheck = ""; }
if(isset($user['receivefrombuddy']) && $user['receivefrombuddy'] == 1)
|
{
| {
|
$receivefrombuddycheck = "checked=\"checked\""; } else
| $receivefrombuddycheck = "checked=\"checked\""; } else
|
Zeile 988 | Zeile 1006 |
---|
elseif(isset($user['dstcorrection']) && $user['dstcorrection'] == 1) { $dst_enabled_selected = "selected=\"selected\"";
|
elseif(isset($user['dstcorrection']) && $user['dstcorrection'] == 1) { $dst_enabled_selected = "selected=\"selected\"";
|
}
| }
|
else
|
else
|
{
| {
|
$dst_disabled_selected = "selected=\"selected\""; }
if(isset($user['showcodebuttons']) && $user['showcodebuttons'] == 1) { $showcodebuttonscheck = "checked=\"checked\"";
|
$dst_disabled_selected = "selected=\"selected\""; }
if(isset($user['showcodebuttons']) && $user['showcodebuttons'] == 1) { $showcodebuttonscheck = "checked=\"checked\"";
|
}
| }
|
else { $showcodebuttonscheck = "";
| else { $showcodebuttonscheck = "";
|
Zeile 1022 | Zeile 1040 |
---|
}
if(isset($user['pmnotify']) && $user['pmnotify'] != 0)
|
}
if(isset($user['pmnotify']) && $user['pmnotify'] != 0)
|
{
| {
|
$pmnotifycheck = "checked=\"checked\""; } else
| $pmnotifycheck = "checked=\"checked\""; } else
|
Zeile 1159 | Zeile 1177 |
---|
$explodedppp = explode(",", $mybb->settings['userpppoptions']); $pppoptions = $ppp_option = ''; if(is_array($explodedppp))
|
$explodedppp = explode(",", $mybb->settings['userpppoptions']); $pppoptions = $ppp_option = ''; if(is_array($explodedppp))
|
{
| {
|
foreach($explodedppp as $key => $val) { $val = trim($val);
| foreach($explodedppp as $key => $val) { $val = trim($val);
|
Zeile 1168 | Zeile 1186 |
---|
{ $selected = " selected=\"selected\""; }
|
{ $selected = " selected=\"selected\""; }
|
|
|
$ppp_option = $lang->sprintf($lang->ppp_option, $val); eval("\$pppoptions .= \"".$templates->get("usercp_options_pppselect_option")."\";"); } } eval("\$pppselect = \"".$templates->get("usercp_options_pppselect")."\";");
|
$ppp_option = $lang->sprintf($lang->ppp_option, $val); eval("\$pppoptions .= \"".$templates->get("usercp_options_pppselect_option")."\";"); } } eval("\$pppselect = \"".$templates->get("usercp_options_pppselect")."\";");
|
}
$plugins->run_hooks("usercp_options_end");
| }
$plugins->run_hooks("usercp_options_end");
|
eval("\$editprofile = \"".$templates->get("usercp_options")."\";"); output_page($editprofile); }
| eval("\$editprofile = \"".$templates->get("usercp_options")."\";"); output_page($editprofile); }
|
Zeile 1228 | Zeile 1246 |
---|
$db->delete_query("awaitingactivation", "uid='".$mybb->user['uid']."'");
// Send new activation mail for non-activated accounts
|
$db->delete_query("awaitingactivation", "uid='".$mybb->user['uid']."'");
// Send new activation mail for non-activated accounts
|
$activationcode = random_str();
| $activationcode = random_str();
|
$activationarray = array( "uid" => $mybb->user['uid'], "dateline" => TIME_NOW,
| $activationarray = array( "uid" => $mybb->user['uid'], "dateline" => TIME_NOW,
|
Zeile 1364 | Zeile 1382 |
---|
$plugins->run_hooks("usercp_do_password_end"); redirect("usercp.php?action=password", $lang->redirect_passwordupdated);
|
$plugins->run_hooks("usercp_do_password_end"); redirect("usercp.php?action=password", $lang->redirect_passwordupdated);
|
} }
| } }
|
if(count($errors) > 0) { $mybb->input['action'] = "password";
| if(count($errors) > 0) { $mybb->input['action'] = "password";
|
Zeile 1507 | Zeile 1525 |
---|
$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 1530 | Zeile 1559 |
---|
$perpage = $mybb->settings['threadsperpage']; $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page > 0)
|
$perpage = $mybb->settings['threadsperpage']; $page = $mybb->get_input('page', MyBB::INPUT_INT); if($page > 0)
|
{
| {
|
$start = ($page-1) * $perpage; $pages = $threadcount / $perpage; $pages = ceil($pages);
| $start = ($page-1) * $perpage; $pages = $threadcount / $perpage; $pages = ceil($pages);
|
Zeile 1538 | Zeile 1567 |
---|
{ $start = 0; $page = 1;
|
{ $start = 0; $page = 1;
|
}
| }
|
} else {
| } else {
|
Zeile 1562 | Zeile 1591 |
---|
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 1599 |
---|
{ $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 1578 | Zeile 1607 |
---|
elseif($subscription['tid']) { $subscriptions[$subscription['tid']] = $subscription;
|
elseif($subscription['tid']) { $subscriptions[$subscription['tid']] = $subscription;
|
} }
| } }
|
if(!empty($del_subscriptions)) { $sids = implode(',', $del_subscriptions);
| if(!empty($del_subscriptions)) { $sids = implode(',', $del_subscriptions);
|
Zeile 1696 | Zeile 1725 |
---|
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']]; } }
|
$cutoff = 0; if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read)
| $cutoff = 0; if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read)
|
Zeile 1713 | Zeile 1744 |
---|
if($thread['lastpost'] > $cutoff) {
|
if($thread['lastpost'] > $cutoff) {
|
if($thread['lastread'])
| if(!empty($thread['lastread']))
|
{ $lastread = $thread['lastread']; } else { $lastread = 1;
|
{ $lastread = $thread['lastread']; } else { $lastread = 1;
|
}
| }
|
}
if(!$lastread)
| }
if(!$lastread)
|
Zeile 1734 | Zeile 1765 |
---|
{ $lastread = $forum_read; }
|
{ $lastread = $forum_read; }
|
}
| }
|
if($lastread && $lastread < $thread['lastpost']) { $folder .= "new";
| if($lastread && $lastread < $thread['lastpost']) { $folder .= "new";
|
Zeile 1749 | Zeile 1780 |
---|
{ $folder_label .= $lang->icon_no_new; $new_class = "subject_old";
|
{ $folder_label .= $lang->icon_no_new; $new_class = "subject_old";
|
}
| }
|
if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews']) { $folder .= "hot";
| if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews']) { $folder .= "hot";
|
Zeile 1758 | Zeile 1789 |
---|
}
if($thread['closed'] == 1)
|
}
if($thread['closed'] == 1)
|
{
| {
|
$folder .= "close"; $folder_label .= $lang->icon_close; }
| $folder .= "close"; $folder_label .= $lang->icon_close; }
|
Zeile 1772 | Zeile 1803 |
---|
// 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 2420 | Zeile 2451 |
---|
{ $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 2435 | Zeile 2476 |
---|
output_page($editsig); }
|
output_page($editsig); }
|
|
|
if($mybb->input['action'] == "do_avatar" && $mybb->request_method == "post") { // Verify incoming POST request
| if($mybb->input['action'] == "do_avatar" && $mybb->request_method == "post") { // Verify incoming POST request
|
Zeile 2457 | Zeile 2498 |
---|
remove_avatars($mybb->user['uid']); } elseif($_FILES['avatarupload']['name']) // upload avatar
|
remove_avatars($mybb->user['uid']); } elseif($_FILES['avatarupload']['name']) // upload avatar
|
{
| {
|
if($mybb->usergroup['canuploadavatars'] == 0) { error_no_permission(); } $avatar = upload_avatar();
|
if($mybb->usergroup['canuploadavatars'] == 0) { error_no_permission(); } $avatar = upload_avatar();
|
if($avatar['error'])
| if(!empty($avatar['error']))
|
{ $avatar_error = $avatar['error']; }
| { $avatar_error = $avatar['error']; }
|
Zeile 2480 | Zeile 2521 |
---|
); $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 3197 | Zeile 3242 |
---|
{ 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 3371 |
---|
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 3382 |
---|
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 3404 |
---|
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 3451 |
---|
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 3526 |
---|
$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 3544 |
---|
$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 3564 |
---|
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 3536 | Zeile 3584 |
---|
if($mybb->get_input('leavegroup', MyBB::INPUT_INT)) { // Verify incoming POST request
|
if($mybb->get_input('leavegroup', MyBB::INPUT_INT)) { // Verify incoming POST request
|
verify_post_check($mybb->input['my_post_key']);
| verify_post_check($mybb->get_input('my_post_key'));
|
if(my_strpos($ingroups, ",".$mybb->get_input('leavegroup', MyBB::INPUT_INT).",") === false) {
| if(my_strpos($ingroups, ",".$mybb->get_input('leavegroup', MyBB::INPUT_INT).",") === false) {
|
Zeile 3593 | Zeile 3641 |
---|
if(my_strpos($ingroups, ",".$mybb->get_input('joingroup', MyBB::INPUT_INT).",") !== false) { error($lang->already_member_of_group);
|
if(my_strpos($ingroups, ",".$mybb->get_input('joingroup', MyBB::INPUT_INT).",") !== false) { error($lang->already_member_of_group);
|
}
| }
|
$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'])
|
$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'])
|
{
| {
|
error($lang->already_sent_join_request); }
|
error($lang->already_sent_join_request); }
|
|
|
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)));
|
Zeile 3745 | Zeile 3793 |
---|
$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'])
|
{
| {
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";");
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";");
|
}
| }
|
elseif($usergroup['candisplaygroup'] == 1)
|
elseif($usergroup['candisplaygroup'] == 1)
|
{
| {
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";"); } else { $displaycode = '';
|
eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";"); } else { $displaycode = '';
|
}
| }
|
eval("\$memberoflist = \"".$templates->get("usercp_usergroups_memberof_usergroup")."\";"); $showmemberof = false; if($mybb->user['additionalgroups'])
| eval("\$memberoflist = \"".$templates->get("usercp_usergroups_memberof_usergroup")."\";"); $showmemberof = false; if($mybb->user['additionalgroups'])
|
Zeile 3788 | Zeile 3840 |
---|
else { eval("\$leavelink = \"".$templates->get("usercp_usergroups_memberof_usergroup_leave")."\";");
|
else { eval("\$leavelink = \"".$templates->get("usercp_usergroups_memberof_usergroup_leave")."\";");
|
}
| }
|
$description = ''; $usergroup['title'] = htmlspecialchars_uni($usergroup['title']);
| $description = ''; $usergroup['title'] = htmlspecialchars_uni($usergroup['title']);
|
Zeile 3802 | Zeile 3854 |
---|
if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup']) { eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";");
|
if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup']) { eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_display")."\";");
|
}
| }
|
elseif($usergroup['candisplaygroup'] == 1) { eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";");
| elseif($usergroup['candisplaygroup'] == 1) { eval("\$displaycode = \"".$templates->get("usercp_usergroups_memberof_usergroup_setdisplay")."\";");
|
Zeile 3815 | Zeile 3867 |
---|
} } eval("\$membergroups = \"".$templates->get("usercp_usergroups_memberof")."\";");
|
} } eval("\$membergroups = \"".$templates->get("usercp_usergroups_memberof")."\";");
|
|
|
// List of groups this user has applied for but has not been accepted in to $query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."'"); while($request = $db->fetch_array($query))
| // List of groups this user has applied for but has not been accepted in to $query = $db->simple_select("joinrequests", "*", "uid='".$mybb->user['uid']."'"); while($request = $db->fetch_array($query))
|
Zeile 3921 | Zeile 3973 |
---|
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
| }
$plugins->run_hooks("usercp_attachments_start");
// Get unviewable forums
|
$f_perm_sql = ''; $unviewable_forums = get_unviewable_forums(true); $inactiveforums = get_inactive_forums();
| $f_perm_sql = ''; $unviewable_forums = get_unviewable_forums(true); $inactiveforums = get_inactive_forums();
|
Zeile 3968 | Zeile 4020 |
---|
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 4005 | Zeile 4057 |
---|
++$processedattachments; }
|
++$processedattachments; }
|
| $multipage = '';
|
if($processedattachments >= $perpage || $page > 1) { $query = $db->query("
| if($processedattachments >= $perpage || $page > 1) { $query = $db->query("
|
Zeile 4036 | Zeile 4089 |
---|
}
$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 4261 | Zeile 4317 |
---|
$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 4286 | Zeile 4343 |
---|
$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)
| $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())
|
{
|
{
|
$visible = '';
| $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($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 4341 | Zeile 4413 |
---|
while($post = $db->fetch_array($query)) { $subscriptions[$post['tid']]['doticon'] = 1;
|
while($post = $db->fetch_array($query)) { $subscriptions[$post['tid']]['doticon'] = 1;
|
} }
| } }
|
$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 4386 | Zeile 4459 |
---|
$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 4448 | Zeile 4521 |
---|
}
// 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 4542 | Zeile 4602 |
---|
$latest_threads_threads = ''; foreach($threadcache as $thread) {
|
$latest_threads_threads = ''; foreach($threadcache as $thread) {
|
$plugins->run_hooks("usercp_latest_threads_thread");
| $plugins->run_hooks("usercp_latest_threads_thread");
|
if($thread['tid']) { $bgcolor = alt_trow();
| if($thread['tid']) { $bgcolor = alt_trow();
|
Zeile 4604 | Zeile 4664 |
---|
$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']; }
|