Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: usercp.php 5142 2010-07-29 23:36:56Z RyanGordon $
| * $Id$
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'usercp.php');
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'usercp.php');
|
$templatelist = "usercp,usercp_home,usercp_nav,usercp_profile,error_nopermission,buddy_online,buddy_offline,usercp_changename,usercp_nav_changename";
| $templatelist = "usercp,usercp_nav,usercp_profile,usercp_changename,usercp_email,usercp_password,usercp_subscriptions_thread,forumbit_depth2_forum_lastpost,usercp_forumsubscriptions_forum";
|
$templatelist .= ",usercp_usergroups_memberof_usergroup,usercp_usergroups_memberof,usercp_usergroups_joinable_usergroup,usercp_usergroups_joinable,usercp_usergroups"; $templatelist .= ",usercp_nav_messenger,usercp_nav_changename,usercp_nav_profile,usercp_nav_misc,usercp_usergroups_leader_usergroup,usercp_usergroups_leader,usercp_currentavatar,usercp_reputation";
|
$templatelist .= ",usercp_usergroups_memberof_usergroup,usercp_usergroups_memberof,usercp_usergroups_joinable_usergroup,usercp_usergroups_joinable,usercp_usergroups"; $templatelist .= ",usercp_nav_messenger,usercp_nav_changename,usercp_nav_profile,usercp_nav_misc,usercp_usergroups_leader_usergroup,usercp_usergroups_leader,usercp_currentavatar,usercp_reputation";
|
$templatelist .= ",usercp_attachments_attachment,usercp_attachments,usercp_profile_away,usercp_profile_customfield,usercp_profile_profilefields,usercp_profile_customtitle,usercp_forumsubscriptions_none,usercp_forumsubscriptions,usercp_subscriptions_none,usercp_subscriptions,usercp_options_pms_from_buddys,usercp_options_tppselect,usercp_options_pppselect,usercp_options";
| $templatelist .= ",usercp_attachments_attachment,usercp_attachments,usercp_profile_away,usercp_profile_customfield,usercp_profile_profilefields,usercp_profile_customtitle,usercp_forumsubscriptions_none"; $templatelist .= ",usercp_forumsubscriptions,usercp_subscriptions_none,usercp_subscriptions,usercp_options_pms_from_buddys,usercp_options_tppselect,usercp_options_pppselect,usercp_options";
|
$templatelist .= ",usercp_nav_editsignature,usercp_referrals,usercp_notepad,usercp_latest_threads_threads,forumdisplay_thread_gotounread,usercp_latest_threads,usercp_subscriptions_remove";
|
$templatelist .= ",usercp_nav_editsignature,usercp_referrals,usercp_notepad,usercp_latest_threads_threads,forumdisplay_thread_gotounread,usercp_latest_threads,usercp_subscriptions_remove";
|
| $templatelist .= ",usercp_editsig_suspended,usercp_editsig,usercp_avatar_gallery_avatar,usercp_avatar_gallery_blankblock,usercp_avatar_gallery_noavatars,usercp_avatar_gallery,usercp_avatar_current"; $templatelist .= ",usercp_avatar,usercp_editlists_userusercp_editlists,usercp_drafts_draft,usercp_drafts_none,usercp_drafts_submit,usercp_drafts,usercp_usergroups_joingroup,usercp_attachments_none"; $templatelist .= ",usercp_warnings_warning,usercp_warnings,usercp_latest_subscribed_threads,usercp_latest_subscribed,usercp_nav_messenger_tracking,multipage_prevpage,multipage_start,multipage_end"; $templatelist .= ",multipage_nextpage,multipage,multipage_page_current,codebuttons,smilieinsert_getmore,smilieinsert";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php";
|
Zeile 39 | Zeile 44 |
---|
}
$errors = '';
|
}
$errors = '';
|
| if(!isset($mybb->input['action'])) { $mybb->input['action'] = ''; }
$collapse_options = array('usercppms', 'usercpprofile', 'usercpmisc'); foreach($collapse_options as $option) { if(!isset($collapsedimg[$option])) { $collapsedimg[$option] = ''; } if(!isset($collapsed[$option.'_e'])) { $collapsed[$option.'_e'] = ''; } }
|
usercp_menu();
| usercp_menu();
|
Zeile 59 | Zeile 82 |
---|
(($mybb->settings['sigimgcode'] == 1 || $mybb->settings['sigsmilies'] == 1) && substr_count($parsed_sig, "<img") > $mybb->settings['maxsigimages']) )
|
(($mybb->settings['sigimgcode'] == 1 || $mybb->settings['sigsmilies'] == 1) && substr_count($parsed_sig, "<img") > $mybb->settings['maxsigimages']) )
|
{
| {
|
if($mybb->settings['sigimgcode'] == 1)
|
if($mybb->settings['sigimgcode'] == 1)
|
{
| {
|
$imgsallowed = $mybb->settings['maxsigimages'];
|
$imgsallowed = $mybb->settings['maxsigimages'];
|
} else {
| } else {
|
$imgsallowed = 0; } $lang->too_many_sig_images2 = $lang->sprintf($lang->too_many_sig_images2, $imgsallowed);
| $imgsallowed = 0; } $lang->too_many_sig_images2 = $lang->sprintf($lang->too_many_sig_images2, $imgsallowed);
|
Zeile 90 | Zeile 113 |
---|
if($sig_length - $mybb->settings['siglength'] > 1) { $lang->sig_too_long .= $lang->sprintf($lang->sig_remove_chars_plural, $sig_length-$mybb->settings['siglength']);
|
if($sig_length - $mybb->settings['siglength'] > 1) { $lang->sig_too_long .= $lang->sprintf($lang->sig_remove_chars_plural, $sig_length-$mybb->settings['siglength']);
|
}
| }
|
else { $lang->sig_too_long .= $lang->sig_remove_chars_singular;
| else { $lang->sig_too_long .= $lang->sig_remove_chars_singular;
|
Zeile 183 | Zeile 206 |
---|
{ $mybb->input['awayyear'] = my_date('Y', $awaydate); }
|
{ $mybb->input['awayyear'] = my_date('Y', $awaydate); }
|
|
|
$return_month = intval(substr($mybb->input['awaymonth'], 0, 2)); $return_day = intval(substr($mybb->input['awayday'], 0, 2)); $return_year = min(intval($mybb->input['awayyear']), 9999);
| $return_month = intval(substr($mybb->input['awaymonth'], 0, 2)); $return_day = intval(substr($mybb->input['awayday'], 0, 2)); $return_year = min(intval($mybb->input['awayyear']), 9999);
|
Zeile 195 | Zeile 218 |
---|
{ error($lang->error_usercp_return_date_past); }
|
{ error($lang->error_usercp_return_date_past); }
|
|
|
$returndate = "{$return_day}-{$return_month}-{$return_year}";
|
$returndate = "{$return_day}-{$return_month}-{$return_year}";
|
}
| }
|
else { $returndate = ""; }
|
else { $returndate = ""; }
|
$away = array(
| $away = array(
|
"away" => 1, "date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->input['awayreason']
|
"away" => 1, "date" => $awaydate, "returndate" => $returndate, "awayreason" => $mybb->input['awayreason']
|
); }
| ); }
|
else { $away = array(
| else { $away = array(
|
Zeile 231 | Zeile 254 |
---|
$user = array( "uid" => $mybb->user['uid'],
|
$user = array( "uid" => $mybb->user['uid'],
|
| "postnum" => $mybb->user['postnum'],
|
"website" => $mybb->input['website'], "icq" => intval($mybb->input['icq']), "aim" => $mybb->input['aim'],
| "website" => $mybb->input['website'], "icq" => intval($mybb->input['icq']), "aim" => $mybb->input['aim'],
|
Zeile 245 | Zeile 269 |
---|
if($mybb->usergroup['cancustomtitle'] == 1) { if($mybb->input['usertitle'] != '')
|
if($mybb->usergroup['cancustomtitle'] == 1) { if($mybb->input['usertitle'] != '')
|
{
| {
|
$user['usertitle'] = $mybb->input['usertitle'];
|
$user['usertitle'] = $mybb->input['usertitle'];
|
}
| }
|
else if($mybb->input['reverttitle']) { $user['usertitle'] = '';
|
else if($mybb->input['reverttitle']) { $user['usertitle'] = '';
|
} }
| } }
|
$userhandler->set_data($user);
|
$userhandler->set_data($user);
|
|
|
if(!$userhandler->validate_user()) { $errors = $userhandler->get_friendly_errors();
|
if(!$userhandler->validate_user()) { $errors = $userhandler->get_friendly_errors();
|
| // Set allowed value otherwise select options disappear if(in_array($lang->userdata_invalid_birthday_privacy, $errors)) { $mybb->input['birthdayprivacy'] = 'none'; }
|
$errors = inline_error($errors); $mybb->input['action'] = "profile"; }
| $errors = inline_error($errors); $mybb->input['action'] = "profile"; }
|
Zeile 294 | Zeile 325 |
---|
if($bday[0] == $i) { $bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n";
|
if($bday[0] == $i) { $bdaydaysel .= "<option value=\"$i\" selected=\"selected\">$i</option>\n";
|
} else {
| } else {
|
$bdaydaysel .= "<option value=\"$i\">$i</option>\n"; } }
| $bdaydaysel .= "<option value=\"$i\">$i</option>\n"; } }
|
Zeile 316 | Zeile 347 |
---|
$bdayprivacysel .= "<option value=\"age\">{$lang->birthdayprivacyage}</option>"; } else if($user['birthdayprivacy'] == 'age')
|
$bdayprivacysel .= "<option value=\"age\">{$lang->birthdayprivacyage}</option>"; } else if($user['birthdayprivacy'] == 'age')
|
{
| {
|
$bdayprivacysel .= "<option value=\"all\">{$lang->birthdayprivacyall}</option>\n"; $bdayprivacysel .= "<option value=\"none\">{$lang->birthdayprivacynone}</option>\n"; $bdayprivacysel .= "<option value=\"age\" selected=\"selected\">{$lang->birthdayprivacyage}</option>";
| $bdayprivacysel .= "<option value=\"all\">{$lang->birthdayprivacyall}</option>\n"; $bdayprivacysel .= "<option value=\"none\">{$lang->birthdayprivacynone}</option>\n"; $bdayprivacysel .= "<option value=\"age\" selected=\"selected\">{$lang->birthdayprivacyage}</option>";
|
Zeile 346 | Zeile 377 |
---|
$user['yahoo'] = htmlspecialchars_uni($user['yahoo']); } if($mybb->settings['allowaway'] != 0)
|
$user['yahoo'] = htmlspecialchars_uni($user['yahoo']); } if($mybb->settings['allowaway'] != 0)
|
{ if($errors)
| { if($errors)
|
{ if($user['away'] == 1) {
| { if($user['away'] == 1) {
|
Zeile 402 | Zeile 433 |
---|
$query = $db->simple_select("profilefields", "*", "editable=1", array('order_by' => 'disporder')); while($profilefield = $db->fetch_array($query)) {
|
$query = $db->simple_select("profilefields", "*", "editable=1", array('order_by' => 'disporder')); while($profilefield = $db->fetch_array($query)) {
|
| // Does this field have a minimum post count? if($profilefield['postnum'] && $profilefield['postnum'] > $mybb->user['postnum']) { continue; }
|
$profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
|
$profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
|
| $profilefield['name'] = htmlspecialchars_uni($profilefield['name']);
|
$profilefield['description'] = htmlspecialchars_uni($profilefield['description']); $thing = explode("\n", $profilefield['type'], "2"); $type = $thing[0];
| $profilefield['description'] = htmlspecialchars_uni($profilefield['description']); $thing = explode("\n", $profilefield['type'], "2"); $type = $thing[0];
|
Zeile 449 | Zeile 487 |
---|
$sel = " selected=\"selected\""; } $select .= "<option value=\"$val\"$sel>$val</option>\n";
|
$sel = " selected=\"selected\""; } $select .= "<option value=\"$val\"$sel>$val</option>\n";
|
}
| }
|
if(!$profilefield['length']) { $profilefield['length'] = 3;
| if(!$profilefield['length']) { $profilefield['length'] = 3;
|
Zeile 568 | Zeile 606 |
---|
{ if($mybb->usergroup['usertitle'] == "") {
|
{ if($mybb->usergroup['usertitle'] == "") {
|
$query = $db->simple_select("usertitles", "*", "posts <='".$mybb->user['postnum']."'", array('order_by' => 'posts', 'order_dir' => 'DESC', 'limit' => 1)); $utitle = $db->fetch_array($query); $defaulttitle = $utitle['title']; } else { $defaulttitle = $mybb->usergroup['usertitle'];
| $defaulttitle = ''; $usertitles = $cache->read('usertitles');
foreach($usertitles as $title) { if($title['posts'] <= $mybb->user['postnum']) { $defaulttitle = htmlspecialchars_uni($title['title']); break; } } } else { $defaulttitle = htmlspecialchars_uni($mybb->usergroup['usertitle']);
|
}
|
}
|
if(empty($user['usertitle']))
| if(trim($user['usertitle']) == '')
|
{
|
{
|
$lang->current_custom_usertitle = '';
| $lang->current_custom_usertitle = '';
|
} else {
| } else {
|
Zeile 589 | Zeile 636 |
---|
} } eval("\$customtitle = \"".$templates->get("usercp_profile_customtitle")."\";");
|
} } eval("\$customtitle = \"".$templates->get("usercp_profile_customtitle")."\";");
|
}
| }
|
else { $customtitle = ""; }
|
else { $customtitle = ""; }
|
|
|
$plugins->run_hooks("usercp_profile_end");
|
$plugins->run_hooks("usercp_profile_end");
|
|
|
eval("\$editprofile = \"".$templates->get("usercp_profile")."\";"); output_page($editprofile); }
| eval("\$editprofile = \"".$templates->get("usercp_profile")."\";"); output_page($editprofile); }
|
Zeile 659 | Zeile 706 |
---|
$errors = $userhandler->get_friendly_errors(); $errors = inline_error($errors); $mybb->input['action'] = "options";
|
$errors = $userhandler->get_friendly_errors(); $errors = inline_error($errors); $mybb->input['action'] = "options";
|
} else
| } else
|
{ $userhandler->update_user();
|
{ $userhandler->update_user();
|
|
|
$plugins->run_hooks("usercp_do_options_end");
redirect("usercp.php", $lang->redirect_optionsupdated);
|
$plugins->run_hooks("usercp_do_options_end");
redirect("usercp.php", $lang->redirect_optionsupdated);
|
}
| }
|
}
if($mybb->input['action'] == "options") { $plugins->run_hooks("usercp_options_start");
|
}
if($mybb->input['action'] == "options") { $plugins->run_hooks("usercp_options_start");
|
|
|
if($errors != '') { $user = $mybb->input;
| if($errors != '') { $user = $mybb->input;
|
Zeile 692 | Zeile 739 |
---|
$sel = " selected=\"selected\""; } $langoptions .= "<option value=\"$lname\"$sel>".htmlspecialchars_uni($language)."</option>\n";
|
$sel = " selected=\"selected\""; } $langoptions .= "<option value=\"$lname\"$sel>".htmlspecialchars_uni($language)."</option>\n";
|
}
| }
|
// Lets work out which options the user has selected and check the boxes if($user['allownotices'] == 1) { $allownoticescheck = "checked=\"checked\"";
|
// Lets work out which options the user has selected and check the boxes if($user['allownotices'] == 1) { $allownoticescheck = "checked=\"checked\"";
|
} else
| } else
|
{ $allownoticescheck = ""; }
if($user['invisible'] == 1)
|
{ $allownoticescheck = ""; }
if($user['invisible'] == 1)
|
{
| {
|
$invisiblecheck = "checked=\"checked\""; } else { $invisiblecheck = "";
|
$invisiblecheck = "checked=\"checked\""; } else { $invisiblecheck = "";
|
}
| }
|
if($user['hideemail'] == 1) { $hideemailcheck = "checked=\"checked\"";
|
if($user['hideemail'] == 1) { $hideemailcheck = "checked=\"checked\"";
|
} else
| } else
|
{ $hideemailcheck = ""; }
if($user['subscriptionmethod'] == 1)
|
{ $hideemailcheck = ""; }
if($user['subscriptionmethod'] == 1)
|
{
| {
|
$no_email_subscribe_selected = "selected=\"selected\"";
|
$no_email_subscribe_selected = "selected=\"selected\"";
|
}
| }
|
else if($user['subscriptionmethod'] == 2) { $instant_email_subscribe_selected = "selected=\"selected\"";
|
else if($user['subscriptionmethod'] == 2) { $instant_email_subscribe_selected = "selected=\"selected\"";
|
}
| }
|
else
|
else
|
|
|
{ $no_subscribe_selected = "selected=\"selected\"";
|
{ $no_subscribe_selected = "selected=\"selected\"";
|
}
| }
|
if($user['showsigs'] == 1) { $showsigscheck = "checked=\"checked\"";
| if($user['showsigs'] == 1) { $showsigscheck = "checked=\"checked\"";
|
Zeile 748 | Zeile 795 |
---|
if($user['showavatars'] == 1) { $showavatarscheck = "checked=\"checked\"";
|
if($user['showavatars'] == 1) { $showavatarscheck = "checked=\"checked\"";
|
}
| }
|
else { $showavatarscheck = "";
| else { $showavatarscheck = "";
|
Zeile 761 | Zeile 808 |
---|
else { $showquickreplycheck = "";
|
else { $showquickreplycheck = "";
|
}
| }
|
if($user['receivepms'] == 1)
|
if($user['receivepms'] == 1)
|
{
| {
|
$receivepmscheck = "checked=\"checked\"";
|
$receivepmscheck = "checked=\"checked\"";
|
}
| }
|
else { $receivepmscheck = ""; }
|
else { $receivepmscheck = ""; }
|
|
|
if($user['receivefrombuddy'] == 1) { $receivefrombuddycheck = "checked=\"checked\"";
| if($user['receivefrombuddy'] == 1) { $receivefrombuddycheck = "checked=\"checked\"";
|
Zeile 830 | Zeile 877 |
---|
$pmnotifycheck = ''; }
|
$pmnotifycheck = ''; }
|
|
|
if($user['threadmode'] != "threaded" && $user['threadmode'] != "linear") { $user['threadmode'] = ''; // Leave blank to show default
|
if($user['threadmode'] != "threaded" && $user['threadmode'] != "linear") { $user['threadmode'] = ''; // Leave blank to show default
|
}
| }
|
if($user['classicpostbit'] != 0) { $classicpostbitcheck = "checked=\"checked\"";
|
if($user['classicpostbit'] != 0) { $classicpostbitcheck = "checked=\"checked\"";
|
}
| }
|
else { $classicpostbitcheck = '';
|
else { $classicpostbitcheck = '';
|
}
| }
|
$date_format_options = "<option value=\"0\">{$lang->use_default}</option>"; foreach($date_formats as $key => $format)
|
$date_format_options = "<option value=\"0\">{$lang->use_default}</option>"; foreach($date_formats as $key => $format)
|
{
| {
|
if($user['dateformat'] == $key) { $date_format_options .= "<option value=\"$key\" selected=\"selected\">".my_date($format, TIME_NOW, "", 0)."</option>";
|
if($user['dateformat'] == $key) { $date_format_options .= "<option value=\"$key\" selected=\"selected\">".my_date($format, TIME_NOW, "", 0)."</option>";
|
}
| }
|
else { $date_format_options .= "<option value=\"$key\">".my_date($format, TIME_NOW, "", 0)."</option>";
| else { $date_format_options .= "<option value=\"$key\">".my_date($format, TIME_NOW, "", 0)."</option>";
|
Zeile 865 | Zeile 912 |
---|
if($user['timeformat'] == $key) { $time_format_options .= "<option value=\"$key\" selected=\"selected\">".my_date($format, TIME_NOW, "", 0)."</option>";
|
if($user['timeformat'] == $key) { $time_format_options .= "<option value=\"$key\" selected=\"selected\">".my_date($format, TIME_NOW, "", 0)."</option>";
|
}
| }
|
else { $time_format_options .= "<option value=\"$key\">".my_date($format, TIME_NOW, "", 0)."</option>"; } }
|
else { $time_format_options .= "<option value=\"$key\">".my_date($format, TIME_NOW, "", 0)."</option>"; } }
|
|
|
$tzselect = build_timezone_select("timezoneoffset", $mybb->user['timezone'], true);
|
$tzselect = build_timezone_select("timezoneoffset", $mybb->user['timezone'], true);
|
|
|
if($mybb->settings['allowbuddyonly'] == 1) { eval("\$pms_from_buddys = \"".$templates->get("usercp_options_pms_from_buddys")."\";");
| if($mybb->settings['allowbuddyonly'] == 1) { eval("\$pms_from_buddys = \"".$templates->get("usercp_options_pms_from_buddys")."\";");
|
Zeile 920 | Zeile 967 |
---|
} eval("\$pppselect = \"".$templates->get("usercp_options_pppselect")."\";"); }
|
} 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 1012 | Zeile 1059 |
---|
}
$plugins->run_hooks("usercp_email");
|
}
$plugins->run_hooks("usercp_email");
|
|
|
eval("\$changemail = \"".$templates->get("usercp_email")."\";"); output_page($changemail); }
| eval("\$changemail = \"".$templates->get("usercp_email")."\";"); output_page($changemail); }
|
Zeile 1059 | Zeile 1106 |
---|
{ $mybb->input['action'] = "password"; $errors = inline_error($errors);
|
{ $mybb->input['action'] = "password"; $errors = inline_error($errors);
|
} }
| } }
|
if($mybb->input['action'] == "password") { $plugins->run_hooks("usercp_password");
|
if($mybb->input['action'] == "password") { $plugins->run_hooks("usercp_password");
|
|
|
eval("\$editpassword = \"".$templates->get("usercp_password")."\";"); output_page($editpassword); }
| eval("\$editpassword = \"".$templates->get("usercp_password")."\";"); output_page($editpassword); }
|
Zeile 1124 | Zeile 1171 |
---|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
|
|
$plugins->run_hooks("usercp_changename_end");
|
$plugins->run_hooks("usercp_changename_end");
|
|
|
eval("\$changename = \"".$templates->get("usercp_changename")."\";"); output_page($changename); }
|
eval("\$changename = \"".$templates->get("usercp_changename")."\";"); output_page($changename); }
|
|
|
if($mybb->input['action'] == "do_subscriptions") { // Verify incoming POST request
| if($mybb->input['action'] == "do_subscriptions") { // Verify incoming POST request
|
Zeile 1139 | Zeile 1186 |
---|
$plugins->run_hooks("usercp_do_subscriptions_start");
if(!is_array($mybb->input['check']))
|
$plugins->run_hooks("usercp_do_subscriptions_start");
if(!is_array($mybb->input['check']))
|
{
| {
|
error($lang->no_subscriptions_selected); }
| error($lang->no_subscriptions_selected); }
|
Zeile 1160 | Zeile 1207 |
---|
$new_notification = 0; } else if($mybb->input['do'] == "instant_notification")
|
$new_notification = 0; } else if($mybb->input['do'] == "instant_notification")
|
{
| {
|
$new_notification = 1; }
// Update $update_array = array("notification" => $new_notification); $db->update_query("threadsubscriptions", $update_array, "tid IN ($tids) AND uid='{$mybb->user['uid']}'");
|
$new_notification = 1; }
// Update $update_array = array("notification" => $new_notification); $db->update_query("threadsubscriptions", $update_array, "tid IN ($tids) AND uid='{$mybb->user['uid']}'");
|
}
| }
|
// Done, redirect redirect("usercp.php?action=subscriptions", $lang->redirect_subscriptions_updated);
| // Done, redirect redirect("usercp.php?action=subscriptions", $lang->redirect_subscriptions_updated);
|
Zeile 1176 | Zeile 1223 |
---|
if($mybb->input['action'] == "subscriptions") { $plugins->run_hooks("usercp_subscriptions_start");
|
if($mybb->input['action'] == "subscriptions") { $plugins->run_hooks("usercp_subscriptions_start");
|
| // Thread visiblity $visible = "AND t.visible != 0"; if(is_moderator() == true) { $visible = ''; }
|
// Do Multi Pages
|
// Do Multi Pages
|
$query = $db->simple_select("threadsubscriptions", "COUNT(tid) AS threads", "uid='".$mybb->user['uid']."'");
| $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']."' {$visible} ");
|
$threadcount = $db->fetch_field($query, "threads");
|
$threadcount = $db->fetch_field($query, "threads");
|
if(!$mybb->settings['threadsperpage'])
| if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1)
|
{ $mybb->settings['threadsperpage'] = 20; }
| { $mybb->settings['threadsperpage'] = 20; }
|
Zeile 1190 | Zeile 1249 |
---|
$page = intval($mybb->input['page']); if($page > 0) {
|
$page = intval($mybb->input['page']); if($page > 0) {
|
$start = ($page-1) *$perpage;
| $start = ($page-1) * $perpage; $pages = $threadcount / $perpage; $pages = ceil($pages); if($page > $pages || $page <= 0) { $start = 0; $page = 1; }
|
} else {
| } else {
|
Zeile 1214 | Zeile 1280 |
---|
LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid) LEFT JOIN ".TABLE_PREFIX."threadprefixes p ON (p.pid=t.prefix)
|
LEFT JOIN ".TABLE_PREFIX."threads t ON (s.tid=t.tid) LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid) LEFT JOIN ".TABLE_PREFIX."threadprefixes p ON (p.pid=t.prefix)
|
WHERE s.uid='".$mybb->user['uid']."'
| WHERE s.uid='".$mybb->user['uid']."' {$visible}
|
ORDER BY t.lastpost DESC LIMIT $start, $perpage "); while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
ORDER BY t.lastpost DESC LIMIT $start, $perpage "); while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
// Only keep if we're allowed to view them if($forumpermissions['canview'] != 0 || $forumpermissions['canviewthreads'] != 0)
| if($forumpermissions['canview'] == 0 || $forumpermissions['canviewthreads'] == 0 || ($forumpermissions['canonlyviewownthreads'] != 0 && $subscription['uid'] != $mybb->user['uid']))
|
{
|
{
|
$subscriptions[$subscription['tid']] = $subscription;
| // Hmm, you don't have permission to view this thread - unsubscribe! $del_subscriptions[] = $subscription['sid'];
|
}
|
}
|
// Hmm, you don't have permission to view - unsubscribe!
| |
else if($subscription['tid']) {
|
else if($subscription['tid']) {
|
$del_subscriptions[] = $subscription['tid'];
| $subscriptions[$subscription['tid']] = $subscription;
|
} }
if(is_array($del_subscriptions)) {
|
} }
if(is_array($del_subscriptions)) {
|
$tids = implode(',', $del_subscriptions); if($tids)
| $sids = implode(',', $del_subscriptions);
if($sids) { $db->delete_query("threadsubscriptions", "sid IN ({$sids}) AND uid='{$mybb->user['uid']}'"); }
$threadcount = $threadcount - count($del_subscriptions);
if($threadcount < 0)
|
{
|
{
|
$db->delete_query("threadsubscriptions", "tid IN ({$tids}) AND uid='{$mybb->user['uid']}'");
| $threadcount = 0;
|
} }
|
} }
|
|
|
if(is_array($subscriptions)) { $tids = implode(",", array_keys($subscriptions));
|
if(is_array($subscriptions)) { $tids = implode(",", array_keys($subscriptions));
|
|
|
if($mybb->user['uid'] == 0)
|
if($mybb->user['uid'] == 0)
|
{
| {
|
// Build a forum cache. $query = $db->query(" SELECT fid
| // Build a forum cache. $query = $db->query(" SELECT fid
|
Zeile 1255 | Zeile 1329 |
---|
WHERE active != 0 ORDER BY pid, disporder ");
|
WHERE active != 0 ORDER BY pid, disporder ");
|
$forumsread = unserialize($mybb->cookies['mybb']['forumread']);
| $forumsread = my_unserialize($mybb->cookies['mybb']['forumread']);
|
} else {
| } else {
|
Zeile 1269 | Zeile 1343 |
---|
ORDER BY pid, disporder "); }
|
ORDER BY pid, disporder "); }
|
|
|
while($forum = $db->fetch_array($query)) { if($mybb->user['uid'] == 0)
| while($forum = $db->fetch_array($query)) { if($mybb->user['uid'] == 0)
|
Zeile 1300 | Zeile 1375 |
---|
$subscriptions[$readthread['tid']]['lastread'] = $readthread['dateline']; } }
|
$subscriptions[$readthread['tid']]['lastread'] = $readthread['dateline']; } }
|
|
|
$icon_cache = $cache->read("posticons");
// Now we can build our subscription list foreach($subscriptions as $thread) { $bgcolor = alt_trow();
|
$icon_cache = $cache->read("posticons");
// Now we can build our subscription list foreach($subscriptions as $thread) { $bgcolor = alt_trow();
|
|
|
$folder = ''; $prefix = '';
|
$folder = ''; $prefix = '';
|
|
|
// If this thread has a prefix, insert a space between prefix and subject if($thread['prefix'] != 0) { $thread['threadprefix'] .= ' '; }
|
// If this thread has a prefix, insert a space between prefix and subject if($thread['prefix'] != 0) { $thread['threadprefix'] .= ' '; }
|
|
|
// Sanitize $thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']);
| // Sanitize $thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']);
|
Zeile 1327 | Zeile 1402 |
---|
// Fetch the thread icon if we have one if($thread['icon'] > 0 && $icon_cache[$thread['icon']])
|
// Fetch the thread icon if we have one if($thread['icon'] > 0 && $icon_cache[$thread['icon']])
|
{
| {
|
$icon = $icon_cache[$thread['icon']];
|
$icon = $icon_cache[$thread['icon']];
|
| $icon['path'] = htmlspecialchars_uni($icon['path']); $icon['name'] = htmlspecialchars_uni($icon['name']);
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />"; } else { $icon = " ";
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />"; } else { $icon = " ";
|
}
| }
|
// Determine the folder $folder = '';
| // Determine the folder $folder = '';
|
Zeile 1352 | Zeile 1429 |
---|
$lastread = 0;
if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
|
$lastread = 0;
if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'])
|
{
| {
|
$forum_read = $readforums[$thread['fid']];
|
$forum_read = $readforums[$thread['fid']];
|
|
|
$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff) {
| $read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff) {
|
Zeile 1364 | Zeile 1441 |
---|
else { $forum_read = $forumsread[$thread['fid']];
|
else { $forum_read = $forumsread[$thread['fid']];
|
}
| }
|
if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read)
|
if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read)
|
{
| {
|
$cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; }
if($thread['lastpost'] > $cutoff) {
|
$cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; }
if($thread['lastpost'] > $cutoff) {
|
if($thread['lastpost'] > $cutoff)
| if($thread['lastread'])
|
{
|
{
|
if($thread['lastread']) { $lastread = $thread['lastread']; } else { $lastread = 1; }
| $lastread = $thread['lastread']; } else { $lastread = 1;
|
} }
| } }
|
Zeile 1399 | Zeile 1473 |
---|
} }
|
} }
|
if($thread['lastpost'] > $lastread && $lastread)
| if($lastread && $lastread < $thread['lastpost'])
|
{ $folder .= "new"; $folder_label .= $lang->icon_new;
| { $folder .= "new"; $folder_label .= $lang->icon_new;
|
Zeile 1428 | Zeile 1502 |
---|
$folder .= "folder";
|
$folder .= "folder";
|
// Build last post info
| if($thread['visible'] == 0) { $bgcolor = "trow_shaded"; }
|
|
|
| // Build last post info
|
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']); $lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']); $lastposter = $thread['lastposter'];
| $lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']); $lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']); $lastposter = $thread['lastposter'];
|
Zeile 1468 | Zeile 1546 |
---|
{ eval("\$threads = \"".$templates->get("usercp_subscriptions_none")."\";"); }
|
{ eval("\$threads = \"".$templates->get("usercp_subscriptions_none")."\";"); }
|
|
|
$plugins->run_hooks("usercp_subscriptions_end");
|
$plugins->run_hooks("usercp_subscriptions_end");
|
|
|
eval("\$subscriptions = \"".$templates->get("usercp_subscriptions")."\";"); output_page($subscriptions); }
|
eval("\$subscriptions = \"".$templates->get("usercp_subscriptions")."\";"); output_page($subscriptions); }
|
|
|
if($mybb->input['action'] == "forumsubscriptions") { $plugins->run_hooks("usercp_forumsubscriptions_start");
|
if($mybb->input['action'] == "forumsubscriptions") { $plugins->run_hooks("usercp_forumsubscriptions_start");
|
$query = $db->simple_select("forumpermissions", "*", "gid='".$db->escape_string($mybb->user['usergroup'])."'"); while($permissions = $db->fetch_array($query)) { $permissioncache[$permissions['gid']][$permissions['fid']] = $permissions; }
|
|
if($mybb->user['uid'] == 0) { // Build a forum cache.
| if($mybb->user['uid'] == 0) { // Build a forum cache.
|
Zeile 1490 | Zeile 1564 |
---|
SELECT fid FROM ".TABLE_PREFIX."forums WHERE active != 0
|
SELECT fid FROM ".TABLE_PREFIX."forums WHERE active != 0
|
ORDER BY pid, disporder "); $forumsread = unserialize($mybb->cookies['mybb']['forumread']); }
| ORDER BY pid, disporder ");
$forumsread = my_unserialize($mybb->cookies['mybb']['forumread']); }
|
else { // Build a forum cache.
| else { // Build a forum cache.
|
Zeile 1506 | Zeile 1580 |
---|
ORDER BY pid, disporder "); }
|
ORDER BY pid, disporder "); }
|
|
|
while($forum = $db->fetch_array($query)) { if($mybb->user['uid'] == 0)
| while($forum = $db->fetch_array($query)) { if($mybb->user['uid'] == 0)
|
Zeile 1513 | Zeile 1588 |
---|
if($forumsread[$forum['fid']]) { $forum['lastread'] = $forumsread[$forum['fid']];
|
if($forumsread[$forum['fid']]) { $forum['lastread'] = $forumsread[$forum['fid']];
|
}
| }
|
} $readforums[$forum['fid']] = $forum['lastread']; }
|
} $readforums[$forum['fid']] = $forum['lastread']; }
|
require_once MYBB_ROOT."inc/functions_forumlist.php";
|
|
$fpermissions = forum_permissions();
|
$fpermissions = forum_permissions();
|
| require_once MYBB_ROOT."inc/functions_forumlist.php";
|
$query = $db->query(" SELECT fs.*, f.*, t.subject AS lastpostsubject, fr.dateline AS lastread FROM ".TABLE_PREFIX."forumsubscriptions fs
| $query = $db->query(" SELECT fs.*, f.*, t.subject AS lastpostsubject, fr.dateline AS lastread FROM ".TABLE_PREFIX."forumsubscriptions fs
|
Zeile 1530 | Zeile 1605 |
---|
WHERE f.type='f' AND fs.uid='".$mybb->user['uid']."' ORDER BY f.name ASC ");
|
WHERE f.type='f' AND fs.uid='".$mybb->user['uid']."' ORDER BY f.name ASC ");
|
|
|
$forums = ''; while($forum = $db->fetch_array($query))
|
$forums = ''; while($forum = $db->fetch_array($query))
|
{
| {
|
$forum_url = get_forum_link($forum['fid']); $forumpermissions = $fpermissions[$forum['fid']];
|
$forum_url = get_forum_link($forum['fid']); $forumpermissions = $fpermissions[$forum['fid']];
|
if($forumpermissions['canview'] != 0)
| if($forumpermissions['canview'] == 0 || $forumpermissions['canviewthreads'] == 0) { continue; }
$lightbulb = get_forum_lightbulb(array('open' => $forum['open'], 'lastread' => $forum['lastread']), array('lastpost' => $forum['lastpost'])); $folder = $lightbulb['folder'];
if($forumpermissions['canonlyviewownthreads'] != 0) { $posts = '-'; $threads = '-'; } else { $posts = my_number_format($forum['posts']); $threads = my_number_format($forum['threads']); }
if($forum['lastpost'] == 0 || $forum['lastposter'] == "") { $lastpost = "<div align=\"center\">{$lang->never}</div>"; } // Hide last post elseif($forumpermissions['canonlyviewownthreads'] != 0 && $forum['lastposteruid'] != $mybb->user['uid']) { $lastpost = "<div align=\"center\">{$lang->na}</div>"; } else
|
{
|
{
|
$lightbulb = get_forum_lightbulb(array('open' => $forum['open'], 'lastread' => $forum['lastread']), array('lastpost' => $forum['lastpost'])); $folder = $lightbulb['folder']; if($forum['lastpost'] == 0 || $forum['lastposter'] == "")
| $forum['lastpostsubject'] = $parser->parse_badwords($forum['lastpostsubject']); $lastpost_date = my_date($mybb->settings['dateformat'], $forum['lastpost']); $lastpost_time = my_date($mybb->settings['timeformat'], $forum['lastpost']); $lastposttid = $forum['lastposttid']; $lastposter = $forum['lastposter']; $lastpost_profilelink = build_profile_link($lastposter, $forum['lastposteruid']); $lastpost_subject = htmlspecialchars_uni($forum['lastpostsubject']); if(my_strlen($lastpost_subject) > 25)
|
{
|
{
|
$lastpost = "<div align=\"center\">$lang->never</div>";
| $lastpost_subject = my_substr($lastpost_subject, 0, 25) . "...";
|
}
|
}
|
else { $lastpost_date = my_date($mybb->settings['dateformat'], $forum['lastpost']); $lastpost_time = my_date($mybb->settings['timeformat'], $forum['lastpost']); $lastposttid = $forum['lastposttid']; $lastposter = $forum['lastposter']; $lastpost_profilelink = build_profile_link($lastposter, $forum['lastposteruid']); $lastpost_subject = $forum['lastpostsubject']; if(my_strlen($lastpost_subject) > 25) { $lastpost_subject = my_substr($lastpost_subject, 0, 25) . "..."; } $lastpost_link = get_thread_link($forum['lastposttid'], 0, "lastpost"); eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost")."\";"); } } $posts = my_number_format($forum['posts']); $threads = my_number_format($forum['threads']);
| $lastpost_link = get_thread_link($forum['lastposttid'], 0, "lastpost"); eval("\$lastpost = \"".$templates->get("forumbit_depth2_forum_lastpost")."\";"); }
|
if($mybb->settings['showdescriptions'] == 0) { $forum['description'] = ""; }
|
if($mybb->settings['showdescriptions'] == 0) { $forum['description'] = ""; }
|
|
|
eval("\$forums .= \"".$templates->get("usercp_forumsubscriptions_forum")."\";"); }
|
eval("\$forums .= \"".$templates->get("usercp_forumsubscriptions_forum")."\";"); }
|
|
|
if(!$forums) { eval("\$forums = \"".$templates->get("usercp_forumsubscriptions_none")."\";"); }
|
if(!$forums) { eval("\$forums = \"".$templates->get("usercp_forumsubscriptions_none")."\";"); }
|
|
|
$plugins->run_hooks("usercp_forumsubscriptions_end");
|
$plugins->run_hooks("usercp_forumsubscriptions_end");
|
|
|
eval("\$forumsubscriptions = \"".$templates->get("usercp_forumsubscriptions")."\";"); output_page($forumsubscriptions); }
if($mybb->input['action'] == "do_editsig" && $mybb->request_method == "post")
|
eval("\$forumsubscriptions = \"".$templates->get("usercp_forumsubscriptions")."\";"); output_page($forumsubscriptions); }
if($mybb->input['action'] == "do_editsig" && $mybb->request_method == "post")
|
{
| {
|
// Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
| // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
Zeile 1632 | Zeile 1732 |
---|
$template = false; }
|
$template = false; }
|
if(!$mybb->user['signature'] && ($mybb->user['suspendsignature'] && $mybb->user['suspendsigtime'] > TIME_NOW))
| if($mybb->user['suspendsignature'] && ($mybb->user['suspendsigtime'] == 0 || $mybb->user['suspendsigtime'] > 0 && $mybb->user['suspendsigtime'] > TIME_NOW))
|
{ // User currently has no signature and they're suspended
|
{ // User currently has no signature and they're suspended
|
| error($lang->sig_suspended); }
if($mybb->usergroup['canusesig'] != 1) { // Usergroup has no permission to use this facility
|
error_no_permission();
|
error_no_permission();
|
| } else if($mybb->usergroup['canusesig'] == 1 && $mybb->usergroup['canusesigxposts'] > 0 && $mybb->user['postnum'] < $mybb->usergroup['canusesigxposts']) { // Usergroup can use this facility, but only after x posts error($lang->sprintf($lang->sig_suspended_posts, $mybb->usergroup['canusesigxposts']));
|
}
if($sig && $template)
| }
if($sig && $template)
|
Zeile 1646 | Zeile 1757 |
---|
"allow_smilies" => $mybb->settings['sigsmilies'], "allow_imgcode" => $mybb->settings['sigimgcode'], "me_username" => $mybb->user['username'],
|
"allow_smilies" => $mybb->settings['sigsmilies'], "allow_imgcode" => $mybb->settings['sigimgcode'], "me_username" => $mybb->user['username'],
|
| "filter_badwords" => 1
|
);
|
);
|
|
|
$sigpreview = $parser->parse_message($sig, $sig_parser); eval("\$signature = \"".$templates->get($template)."\";"); }
| $sigpreview = $parser->parse_message($sig, $sig_parser); eval("\$signature = \"".$templates->get($template)."\";"); }
|
Zeile 1656 | Zeile 1768 |
---|
if($mybb->user['suspendsignature'] && $mybb->user['suspendsigtime'] > TIME_NOW) { $plugins->run_hooks("usercp_editsig_end");
|
if($mybb->user['suspendsignature'] && $mybb->user['suspendsigtime'] > TIME_NOW) { $plugins->run_hooks("usercp_editsig_end");
|
|
|
// User either doesn't have permission, or has their signature suspended eval("\$editsig = \"".$templates->get("usercp_editsig_suspended")."\";"); }
| // User either doesn't have permission, or has their signature suspended eval("\$editsig = \"".$templates->get("usercp_editsig_suspended")."\";"); }
|
Zeile 1667 | Zeile 1779 |
---|
{ $sigsmilies = $lang->on; $smilieinserter = build_clickable_smilies();
|
{ $sigsmilies = $lang->on; $smilieinserter = build_clickable_smilies();
|
}
| }
|
else { $sigsmilies = $lang->off; } if($mybb->settings['sigmycode'] == 1)
|
else { $sigsmilies = $lang->off; } if($mybb->settings['sigmycode'] == 1)
|
{
| {
|
$sigmycode = $lang->on; } else
| $sigmycode = $lang->on; } else
|
Zeile 1683 | Zeile 1795 |
---|
if($mybb->settings['sightml'] == 1) { $sightml = $lang->on;
|
if($mybb->settings['sightml'] == 1) { $sightml = $lang->on;
|
} else {
| } else {
|
$sightml = $lang->off; } if($mybb->settings['sigimgcode'] == 1)
| $sightml = $lang->off; } if($mybb->settings['sigimgcode'] == 1)
|
Zeile 1698 | Zeile 1810 |
---|
} $sig = htmlspecialchars_uni($sig); $lang->edit_sig_note2 = $lang->sprintf($lang->edit_sig_note2, $sigsmilies, $sigmycode, $sigimgcode, $sightml, $mybb->settings['siglength']);
|
} $sig = htmlspecialchars_uni($sig); $lang->edit_sig_note2 = $lang->sprintf($lang->edit_sig_note2, $sigsmilies, $sigmycode, $sigimgcode, $sightml, $mybb->settings['siglength']);
|
|
|
if($mybb->settings['bbcodeinserter'] != 0 || $mybb->user['showcodebuttons'] != 0) { $codebuttons = build_mycode_inserter("signature"); }
|
if($mybb->settings['bbcodeinserter'] != 0 || $mybb->user['showcodebuttons'] != 0) { $codebuttons = build_mycode_inserter("signature"); }
|
|
|
$plugins->run_hooks("usercp_editsig_end");
|
$plugins->run_hooks("usercp_editsig_end");
|
|
|
eval("\$editsig = \"".$templates->get("usercp_editsig")."\";"); }
|
eval("\$editsig = \"".$templates->get("usercp_editsig")."\";"); }
|
|
|
output_page($editsig); }
| output_page($editsig); }
|
Zeile 1719 | Zeile 1831 |
---|
$plugins->run_hooks("usercp_do_avatar_start"); require_once MYBB_ROOT."inc/functions_upload.php";
|
$plugins->run_hooks("usercp_do_avatar_start"); require_once MYBB_ROOT."inc/functions_upload.php";
|
|
|
$avatar_error = "";
if($mybb->input['remove']) // remove avatar
| $avatar_error = "";
if($mybb->input['remove']) // remove avatar
|
Zeile 1737 | Zeile 1849 |
---|
if(empty($mybb->input['avatar'])) { $avatar_error = $lang->error_noavatar;
|
if(empty($mybb->input['avatar'])) { $avatar_error = $lang->error_noavatar;
|
}
| }
|
$mybb->input['gallery'] = str_replace(array("./", ".."), "", $mybb->input['gallery']); $mybb->input['avatar'] = str_replace(array("./", ".."), "", $mybb->input['avatar']);
if(empty($avatar_error)) { if($mybb->input['gallery'] == "default")
|
$mybb->input['gallery'] = str_replace(array("./", ".."), "", $mybb->input['gallery']); $mybb->input['avatar'] = str_replace(array("./", ".."), "", $mybb->input['avatar']);
if(empty($avatar_error)) { if($mybb->input['gallery'] == "default")
|
{
| {
|
$avatarpath = $db->escape_string($mybb->settings['avatardir']."/".$mybb->input['avatar']); } else { $avatarpath = $db->escape_string($mybb->settings['avatardir']."/".$mybb->input['gallery']."/".$mybb->input['avatar']);
|
$avatarpath = $db->escape_string($mybb->settings['avatardir']."/".$mybb->input['avatar']); } else { $avatarpath = $db->escape_string($mybb->settings['avatardir']."/".$mybb->input['gallery']."/".$mybb->input['avatar']);
|
}
| }
|
if(file_exists($avatarpath)) {
| if(file_exists($avatarpath)) {
|
Zeile 1770 | Zeile 1882 |
---|
elseif($_FILES['avatarupload']['name']) // upload avatar { if($mybb->usergroup['canuploadavatars'] == 0)
|
elseif($_FILES['avatarupload']['name']) // upload avatar { if($mybb->usergroup['canuploadavatars'] == 0)
|
{
| {
|
error_no_permission(); } $avatar = upload_avatar();
| error_no_permission(); } $avatar = upload_avatar();
|
Zeile 1788 | Zeile 1900 |
---|
"avatar" => $avatar['avatar'].'?dateline='.TIME_NOW, "avatardimensions" => $avatar_dimensions, "avatartype" => "upload"
|
"avatar" => $avatar['avatar'].'?dateline='.TIME_NOW, "avatardimensions" => $avatar_dimensions, "avatartype" => "upload"
|
); $db->update_query("users", $updated_avatar, "uid='".$mybb->user['uid']."'");
| ); $db->update_query("users", $updated_avatar, "uid='".$mybb->user['uid']."'");
|
} } else // remote avatar { $mybb->input['avatarurl'] = preg_replace("#script:#i", "", $mybb->input['avatarurl']); $ext = get_extension($mybb->input['avatarurl']);
|
} } else // remote avatar { $mybb->input['avatarurl'] = preg_replace("#script:#i", "", $mybb->input['avatarurl']); $ext = get_extension($mybb->input['avatarurl']);
|
|
|
// Copy the avatar to the local server (work around remote URL access disabled for getimagesize) $file = fetch_remote_file($mybb->input['avatarurl']); if(!$file) { $avatar_error = $lang->error_invalidavatarurl;
|
// Copy the avatar to the local server (work around remote URL access disabled for getimagesize) $file = fetch_remote_file($mybb->input['avatarurl']); if(!$file) { $avatar_error = $lang->error_invalidavatarurl;
|
}
| }
|
else { $tmp_name = $mybb->settings['avataruploadpath']."/remote_".md5(random_str());
| else { $tmp_name = $mybb->settings['avataruploadpath']."/remote_".md5(random_str());
|
Zeile 1820 | Zeile 1932 |
---|
if(!$type) { $avatar_error = $lang->error_invalidavatarurl;
|
if(!$type) { $avatar_error = $lang->error_invalidavatarurl;
|
} }
| } }
|
}
if(empty($avatar_error))
| }
if(empty($avatar_error))
|
Zeile 1840 | Zeile 1952 |
---|
if(empty($avatar_error)) { if($width > 0 && $height > 0)
|
if(empty($avatar_error)) { if($width > 0 && $height > 0)
|
{
| {
|
$avatar_dimensions = intval($width)."|".intval($height); } $updated_avatar = array(
| $avatar_dimensions = intval($width)."|".intval($height); } $updated_avatar = array(
|
Zeile 1872 | Zeile 1984 |
---|
$gallerylist['default'] = $lang->default_gallery; $avatardir = @opendir($mybb->settings['avatardir']); while($dir = @readdir($avatardir))
|
$gallerylist['default'] = $lang->default_gallery; $avatardir = @opendir($mybb->settings['avatardir']); while($dir = @readdir($avatardir))
|
{
| {
|
if(is_dir($mybb->settings['avatardir']."/$dir") && substr($dir, 0, 1) != ".") { $gallerylist[$dir] = str_replace("_", " ", $dir);
| if(is_dir($mybb->settings['avatardir']."/$dir") && substr($dir, 0, 1) != ".") { $gallerylist[$dir] = str_replace("_", " ", $dir);
|
Zeile 1891 | Zeile 2003 |
---|
} $galleries .= "<option value=\"$dir\" $selected>$friendlyname</option>\n"; $selected = "";
|
} $galleries .= "<option value=\"$dir\" $selected>$friendlyname</option>\n"; $selected = "";
|
}
| }
|
// Check to see if we're in a gallery or not if($activegallery)
| // Check to see if we're in a gallery or not if($activegallery)
|
Zeile 1950 | Zeile 2062 |
---|
{ eval("\$avatarlist = \"".$templates->get("usercp_avatar_gallery_noavatars")."\";"); }
|
{ eval("\$avatarlist = \"".$templates->get("usercp_avatar_gallery_noavatars")."\";"); }
|
|
|
$plugins->run_hooks("usercp_avatar_end");
|
$plugins->run_hooks("usercp_avatar_end");
|
|
|
eval("\$gallery = \"".$templates->get("usercp_avatar_gallery")."\";"); output_page($gallery); }
| eval("\$gallery = \"".$templates->get("usercp_avatar_gallery")."\";"); output_page($gallery); }
|
Zeile 2005 | Zeile 2117 |
---|
{ $auto_resize = "<br /><span class=\"smalltext\"><input type=\"checkbox\" name=\"auto_resize\" value=\"1\" checked=\"checked\" id=\"auto_resize\" /> <label for=\"auto_resize\">{$lang->avatar_auto_resize_option}</label></span>"; }
|
{ $auto_resize = "<br /><span class=\"smalltext\"><input type=\"checkbox\" name=\"auto_resize\" value=\"1\" checked=\"checked\" id=\"auto_resize\" /> <label for=\"auto_resize\">{$lang->avatar_auto_resize_option}</label></span>"; }
|
|
|
$plugins->run_hooks("usercp_avatar_end");
|
$plugins->run_hooks("usercp_avatar_end");
|
|
|
eval("\$avatar = \"".$templates->get("usercp_avatar")."\";"); output_page($avatar); } }
|
eval("\$avatar = \"".$templates->get("usercp_avatar")."\";"); output_page($avatar); } }
|
|
|
if($mybb->input['action'] == "do_editlists") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
if($mybb->input['action'] == "do_editlists") { // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
|
|
$plugins->run_hooks("usercp_do_editlists_start");
$existing_users = array();
| $plugins->run_hooks("usercp_do_editlists_start");
$existing_users = array();
|
Zeile 2027 | Zeile 2139 |
---|
if($mybb->user['ignorelist']) { $existing_users = explode(",", $mybb->user['ignorelist']);
|
if($mybb->user['ignorelist']) { $existing_users = explode(",", $mybb->user['ignorelist']);
|
}
| }
|
if($mybb->user['buddylist']) { // Create a list of buddies...
|
if($mybb->user['buddylist']) { // Create a list of buddies...
|
$selected_list = explode(",", $mybb->user['buddylist']);
| $selected_list = explode(",", $mybb->user['buddylist']);
|
} } else
| } } else
|
Zeile 2048 | Zeile 2160 |
---|
$selected_list = explode(",", $mybb->user['ignorelist']); } }
|
$selected_list = explode(",", $mybb->user['ignorelist']); } }
|
|
|
$error_message = ""; $message = "";
|
$error_message = ""; $message = "";
|
|
|
// Adding one or more users to this list if($mybb->input['add_username']) {
| // Adding one or more users to this list if($mybb->input['add_username']) {
|
Zeile 2109 | Zeile 2221 |
---|
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; }
|
|
|
$existing_users[] = $user['uid'];
|
$existing_users[] = $user['uid'];
|
} }
if(($adding_self != true || ($adding_self == true && count($users) > 0)) && ($error_message == "" || count($users) > 1)) { if($mybb->input['manage'] == "ignored") { $message = $lang->users_added_to_ignore_list; } else { $message = $lang->users_added_to_buddy_list; } }
if($adding_self == true) { if($mybb->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) { $message = ""; }
| } }
|
if($found_users < count($users)) { if($error_message)
| if($found_users < count($users)) { if($error_message)
|
Zeile 2152 | Zeile 2235 |
---|
$error_message .= $lang->invalid_user_selected; }
|
$error_message .= $lang->invalid_user_selected; }
|
}
| if(($adding_self != true || ($adding_self == true && count($users) > 0)) && ($error_message == "" || count($users) > 1)) { if($mybb->input['manage'] == "ignored") { $message = $lang->users_added_to_ignore_list; } else { $message = $lang->users_added_to_buddy_list; } }
if($adding_self == true) { if($mybb->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) { $message = ""; } }
|
// Removing a user from this list else if($mybb->input['delete'])
| // Removing a user from this list else if($mybb->input['delete'])
|
Zeile 2164 | Zeile 2276 |
---|
unset($existing_users[$key]); $user = get_user($mybb->input['delete']); if($mybb->input['manage'] == "ignored")
|
unset($existing_users[$key]); $user = get_user($mybb->input['delete']); if($mybb->input['manage'] == "ignored")
|
{
| {
|
$message = $lang->removed_from_ignore_list; } else
| $message = $lang->removed_from_ignore_list; } else
|
Zeile 2183 | Zeile 2295 |
---|
$new_list = preg_replace("#[^0-9,]#", "", $new_list);
if(my_substr($new_list, 0, 1) == ",")
|
$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) == ",")
| $new_list = my_substr($new_list, 1); } if(my_substr($new_list, -1) == ",")
|
Zeile 2274 | Zeile 2386 |
---|
// Fetch out buddies $buddy_count = 0; if($mybb->user['buddylist'])
|
// Fetch out buddies $buddy_count = 0; if($mybb->user['buddylist'])
|
{
| {
|
$type = "buddy"; $query = $db->simple_select("users", "*", "uid IN ({$mybb->user['buddylist']})", array("order_by" => "username")); while($user = $db->fetch_array($query))
| $type = "buddy"; $query = $db->simple_select("users", "*", "uid IN ({$mybb->user['buddylist']})", array("order_by" => "username")); while($user = $db->fetch_array($query))
|
Zeile 2342 | Zeile 2454 |
---|
} exit; }
|
} exit; }
|
|
|
$plugins->run_hooks("usercp_editlists_end");
eval("\$listpage = \"".$templates->get("usercp_editlists")."\";");
| $plugins->run_hooks("usercp_editlists_end");
eval("\$listpage = \"".$templates->get("usercp_editlists")."\";");
|
Zeile 2366 | Zeile 2478 |
---|
{ $trow = alt_trow(); if($draft['threadvisible'] == 1) // We're looking at a draft post
|
{ $trow = alt_trow(); if($draft['threadvisible'] == 1) // We're looking at a draft post
|
{
| {
|
$detail = $lang->thread." <a href=\"".get_thread_link($draft['tid'])."\">".htmlspecialchars_uni($draft['threadsubject'])."</a>"; $editurl = "newreply.php?action=editdraft&pid={$draft['pid']}"; $id = $draft['pid'];
| $detail = $lang->thread." <a href=\"".get_thread_link($draft['tid'])."\">".htmlspecialchars_uni($draft['threadsubject'])."</a>"; $editurl = "newreply.php?action=editdraft&pid={$draft['pid']}"; $id = $draft['pid'];
|
Zeile 2374 | Zeile 2486 |
---|
} elseif($draft['threadvisible'] == -2) // We're looking at a draft thread {
|
} elseif($draft['threadvisible'] == -2) // We're looking at a draft thread {
|
$detail = $lang->forum." <a href=\"".get_forum_link($draft['fid'])."\">".htmlspecialchars_uni($draft['forumname'])."</a>";
| $detail = $lang->forum." <a href=\"".get_forum_link($draft['fid'])."\">{$draft['forumname']}</a>";
|
$editurl = "newthread.php?action=editdraft&tid={$draft['tid']}"; $id = $draft['tid']; $type = "thread";
| $editurl = "newthread.php?action=editdraft&tid={$draft['tid']}"; $id = $draft['tid']; $type = "thread";
|
Zeile 2394 | Zeile 2506 |
---|
eval("\$draftsubmit = \"".$templates->get("usercp_drafts_submit")."\";"); $disable_delete_drafts = ''; }
|
eval("\$draftsubmit = \"".$templates->get("usercp_drafts_submit")."\";"); $disable_delete_drafts = ''; }
|
|
|
$query = $db->simple_select("posts", "COUNT(*) AS draftcount", "visible='-2' AND uid='".$mybb->user['uid']."'"); $count = $db->fetch_array($query); $draftcount = "(".my_number_format($count['draftcount']).")";
|
$query = $db->simple_select("posts", "COUNT(*) AS draftcount", "visible='-2' AND uid='".$mybb->user['uid']."'"); $count = $db->fetch_array($query); $draftcount = "(".my_number_format($count['draftcount']).")";
|
|
|
$plugins->run_hooks("usercp_drafts_end");
|
$plugins->run_hooks("usercp_drafts_end");
|
|
|
eval("\$draftlist = \"".$templates->get("usercp_drafts")."\";"); output_page($draftlist);
| eval("\$draftlist = \"".$templates->get("usercp_drafts")."\";"); output_page($draftlist);
|
Zeile 2532 | Zeile 2644 |
---|
} if($mybb->input['do'] == "joingroup" && $usergroup['type'] == 4) {
|
} if($mybb->input['do'] == "joingroup" && $usergroup['type'] == 4) {
|
$reason = $db->escape_string($reason);
| $reason = $db->escape_string($mybb->input['reason']);
|
$now = TIME_NOW; $joinrequest = array( "uid" => $mybb->user['uid'], "gid" => intval($mybb->input['joingroup']),
|
$now = TIME_NOW; $joinrequest = array( "uid" => $mybb->user['uid'], "gid" => intval($mybb->input['joingroup']),
|
"reason" => $db->escape_string($mybb->input['reason']),
| "reason" => $reason,
|
"dateline" => TIME_NOW );
| "dateline" => TIME_NOW );
|
Zeile 2583 | Zeile 2695 |
---|
case "pgsql": case "sqlite": $query = $db->query("
|
case "pgsql": case "sqlite": $query = $db->query("
|
SELECT g.title, g.gid, g.type, COUNT(u.uid) AS users, COUNT(j.rid) AS joinrequests, l.canmanagerequests, l.canmanagemembers
| SELECT g.title, g.gid, g.type, COUNT(DISTINCT u.uid) AS users, COUNT(DISTINCT j.rid) AS joinrequests, l.canmanagerequests, l.canmanagemembers
|
FROM ".TABLE_PREFIX."groupleaders l LEFT JOIN ".TABLE_PREFIX."usergroups g ON(g.gid=l.gid) LEFT JOIN ".TABLE_PREFIX."users u ON(((','|| u.additionalgroups|| ',' LIKE '%,'|| g.gid|| ',%') OR u.usergroup = g.gid))
|
FROM ".TABLE_PREFIX."groupleaders l LEFT JOIN ".TABLE_PREFIX."usergroups g ON(g.gid=l.gid) LEFT JOIN ".TABLE_PREFIX."users u ON(((','|| u.additionalgroups|| ',' LIKE '%,'|| g.gid|| ',%') OR u.usergroup = g.gid))
|
LEFT JOIN ".TABLE_PREFIX."joinrequests j ON(j.gid=g.gid AND j.uid != 0) WHERE l.uid='".$mybb->user['uid']."'
| LEFT JOIN ".TABLE_PREFIX."joinrequests j ON(j.gid=g.gid AND j.uid != 0) WHERE l.uid='".$mybb->user['uid']."'
|
GROUP BY g.gid, g.title, g.type, l.canmanagerequests, l.canmanagemembers "); break;
| GROUP BY g.gid, g.title, g.type, l.canmanagerequests, l.canmanagemembers "); break;
|
Zeile 2608 | Zeile 2720 |
---|
{ $memberlistlink = $moderaterequestslink = ''; $memberlistlink = " [<a href=\"managegroup.php?gid=".$usergroup['gid']."\">".$lang->view_members."</a>]";
|
{ $memberlistlink = $moderaterequestslink = ''; $memberlistlink = " [<a href=\"managegroup.php?gid=".$usergroup['gid']."\">".$lang->view_members."</a>]";
|
| $usergroup['title'] = htmlspecialchars_uni($usergroup['title']);
|
if($usergroup['type'] != 4) { $usergroup['joinrequests'] = '--';
| if($usergroup['type'] != 4) { $usergroup['joinrequests'] = '--';
|
Zeile 2623 | Zeile 2736 |
---|
if($groupsledlist) { eval("\$leadinggroups = \"".$templates->get("usercp_usergroups_leader")."\";");
|
if($groupsledlist) { eval("\$leadinggroups = \"".$templates->get("usercp_usergroups_leader")."\";");
|
}
| }
|
// Fetch the list of groups the member is in // Do the primary group first $query = $db->simple_select("usergroups", "*", "gid='".$mybb->user['usergroup']."'"); $usergroup = $db->fetch_array($query);
|
// Fetch the list of groups the member is in // Do the primary group first $query = $db->simple_select("usergroups", "*", "gid='".$mybb->user['usergroup']."'"); $usergroup = $db->fetch_array($query);
|
| $usergroup['title'] = htmlspecialchars_uni($usergroup['title']); $usergroup['usertitle'] = htmlspecialchars_uni($usergroup['usertitle']); $usergroup['description'] = htmlspecialchars_uni($usergroup['description']);
|
$leavelink = "<div style=\"text-align:center;\"><span class=\"smalltext\">{$lang->usergroup_leave_primary}</span></div>"; $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
| $leavelink = "<div style=\"text-align:center;\"><span class=\"smalltext\">{$lang->usergroup_leave_primary}</span></div>"; $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
|
Zeile 2665 | Zeile 2781 |
---|
{ $leavelink = "<div style=\"text-align: center;\"><a href=\"usercp.php?action=usergroups&leavegroup=".$usergroup['gid']."&my_post_key={$mybb->post_code}\">".$lang->usergroup_leave."</a></div>"; }
|
{ $leavelink = "<div style=\"text-align: center;\"><a href=\"usercp.php?action=usergroups&leavegroup=".$usergroup['gid']."&my_post_key={$mybb->post_code}\">".$lang->usergroup_leave."</a></div>"; }
|
| $usergroup['title'] = htmlspecialchars_uni($usergroup['title']); $usergroup['usertitle'] = htmlspecialchars_uni($usergroup['usertitle']);
|
if($usergroup['description']) {
|
if($usergroup['description']) {
|
| $usergroup['description'] = htmlspecialchars_uni($usergroup['description']);
|
$description = "<br /><span class=\"smalltext\">".$usergroup['description']."</span>"; } else { $description = '';
|
$description = "<br /><span class=\"smalltext\">".$usergroup['description']."</span>"; } else { $description = '';
|
} if(!$usergroup['usertitle']) { // fetch title here
| |
} $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
| } $trow = alt_trow(); if($usergroup['candisplaygroup'] == 1 && $usergroup['gid'] == $mybb->user['displaygroup'])
|
Zeile 2714 | Zeile 2829 |
---|
while($usergroup = $db->fetch_array($query)) { $trow = alt_trow();
|
while($usergroup = $db->fetch_array($query)) { $trow = alt_trow();
|
| $usergroup['title'] = htmlspecialchars_uni($usergroup['title']);
|
if($usergroup['description']) {
|
if($usergroup['description']) {
|
| $usergroup['description'] = htmlspecialchars_uni($usergroup['description']);
|
$description = "<br /><span class=\"smallfont\">".$usergroup['description']."</span>"; } else
| $description = "<br /><span class=\"smallfont\">".$usergroup['description']."</span>"; } else
|
Zeile 2770 | Zeile 2887 |
---|
}
$plugins->run_hooks("usercp_usergroups_end");
|
}
$plugins->run_hooks("usercp_usergroups_end");
|
|
|
eval("\$groupmemberships = \"".$templates->get("usercp_usergroups")."\";"); output_page($groupmemberships); } if($mybb->input['action'] == "attachments") { $plugins->run_hooks("usercp_attachments_start");
|
eval("\$groupmemberships = \"".$templates->get("usercp_usergroups")."\";"); output_page($groupmemberships); } if($mybb->input['action'] == "attachments") { $plugins->run_hooks("usercp_attachments_start");
|
require_once MYBB_ROOT."inc/functions_upload.php";
$attachments = '';
$query = $db->simple_select("attachments", "SUM(filesize) AS ausage, COUNT(aid) AS acount", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query); $totalusage = $usage['ausage']; $totalattachments = $usage['acount']; $friendlyusage = get_friendly_size($totalusage); if($mybb->usergroup['attachquota']) { $percent = round(($totalusage/($mybb->usergroup['attachquota']*1024))*100)."%"; $attachquota = get_friendly_size($mybb->usergroup['attachquota']*1024); $usagenote = $lang->sprintf($lang->attachments_usage_quota, $friendlyusage, $attachquota, $percent, $totalattachments); } else { $percent = $lang->unlimited; $attachquota = $lang->unlimited; $usagenote = $lang->sprintf($lang->attachments_usage, $friendlyusage, $totalattachments); }
| require_once MYBB_ROOT."inc/functions_upload.php";
$attachments = '';
|
// Pagination
|
// Pagination
|
if(!$mybb->settings['threadsperpage']) {
| if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1) {
|
$mybb->settings['threadsperpage'] = 20;
|
$mybb->settings['threadsperpage'] = 20;
|
}
| }
|
$perpage = $mybb->settings['threadsperpage']; $page = intval($mybb->input['page']);
|
$perpage = $mybb->settings['threadsperpage']; $page = intval($mybb->input['page']);
|
|
|
if(intval($mybb->input['page']) > 0) { $start = ($page-1) *$perpage; } else
|
if(intval($mybb->input['page']) > 0) { $start = ($page-1) *$perpage; } else
|
{
| {
|
$start = 0; $page = 1;
|
$start = 0; $page = 1;
|
}
| }
|
$end = $start + $perpage; $lower = $start+1;
|
$end = $start + $perpage; $lower = $start+1;
|
if($end > $totalattachments) { $upper = $totalattachments; } $multipage = multipage($totalattachments, $perpage, $page, "usercp.php?action=attachments");
| |
$query = $db->query(" SELECT a.*, p.subject, p.dateline, t.tid, t.subject AS threadsubject FROM ".TABLE_PREFIX."attachments a LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
|
$query = $db->query(" SELECT a.*, p.subject, p.dateline, t.tid, t.subject AS threadsubject FROM ".TABLE_PREFIX."attachments a LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid) LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
|
WHERE a.uid='".$mybb->user['uid']."' AND a.pid!='0'
| WHERE a.uid='".$mybb->user['uid']."'
|
ORDER BY p.dateline DESC LIMIT {$start}, {$perpage} ");
|
ORDER BY p.dateline DESC LIMIT {$start}, {$perpage} ");
|
|
|
$bandwidth = $totaldownloads = 0; while($attachment = $db->fetch_array($query)) { if($attachment['dateline'] && $attachment['tid'])
|
$bandwidth = $totaldownloads = 0; while($attachment = $db->fetch_array($query)) { if($attachment['dateline'] && $attachment['tid'])
|
{
| {
|
$attachment['subject'] = htmlspecialchars_uni($parser->parse_badwords($attachment['subject'])); $attachment['postlink'] = get_post_link($attachment['pid'], $attachment['tid']); $attachment['threadlink'] = get_thread_link($attachment['tid']); $attachment['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($attachment['threadsubject']));
|
$attachment['subject'] = htmlspecialchars_uni($parser->parse_badwords($attachment['subject'])); $attachment['postlink'] = get_post_link($attachment['pid'], $attachment['tid']); $attachment['threadlink'] = get_thread_link($attachment['tid']); $attachment['threadsubject'] = htmlspecialchars_uni($parser->parse_badwords($attachment['threadsubject']));
|
|
|
$size = get_friendly_size($attachment['filesize']); $icon = get_attachment_icon(get_extension($attachment['filename']));
|
$size = get_friendly_size($attachment['filesize']); $icon = get_attachment_icon(get_extension($attachment['filename']));
|
| $attachment['filename'] = htmlspecialchars_uni($attachment['filename']);
|
$sizedownloads = $lang->sprintf($lang->attachment_size_downloads, $size, $attachment['downloads']); $attachdate = my_date($mybb->settings['dateformat'], $attachment['dateline']); $attachtime = my_date($mybb->settings['timeformat'], $attachment['dateline']); $altbg = alt_trow();
|
$sizedownloads = $lang->sprintf($lang->attachment_size_downloads, $size, $attachment['downloads']); $attachdate = my_date($mybb->settings['dateformat'], $attachment['dateline']); $attachtime = my_date($mybb->settings['timeformat'], $attachment['dateline']); $altbg = alt_trow();
|
|
|
eval("\$attachments .= \"".$templates->get("usercp_attachments_attachment")."\";");
|
eval("\$attachments .= \"".$templates->get("usercp_attachments_attachment")."\";");
|
|
|
// Add to bandwidth total $bandwidth += ($attachment['filesize'] * $attachment['downloads']); $totaldownloads += $attachment['downloads'];
| // Add to bandwidth total $bandwidth += ($attachment['filesize'] * $attachment['downloads']); $totaldownloads += $attachment['downloads'];
|
Zeile 2859 | Zeile 2959 |
---|
// This little thing delets attachments without a thread/post remove_attachment($attachment['pid'], $attachment['posthash'], $attachment['aid']); }
|
// This little thing delets attachments without a thread/post remove_attachment($attachment['pid'], $attachment['posthash'], $attachment['aid']); }
|
}
| }
$query = $db->simple_select("attachments", "SUM(filesize) AS ausage, COUNT(aid) AS acount", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query); $totalusage = $usage['ausage']; $totalattachments = $usage['acount']; $friendlyusage = get_friendly_size($totalusage); if($mybb->usergroup['attachquota']) { $percent = round(($totalusage/($mybb->usergroup['attachquota']*1024))*100)."%"; $attachquota = get_friendly_size($mybb->usergroup['attachquota']*1024); $usagenote = $lang->sprintf($lang->attachments_usage_quota, $friendlyusage, $attachquota, $percent, $totalattachments); } else { $percent = $lang->unlimited; $attachquota = $lang->unlimited; $usagenote = $lang->sprintf($lang->attachments_usage, $friendlyusage, $totalattachments); }
$multipage = multipage($totalattachments, $perpage, $page, "usercp.php?action=attachments");
|
$bandwidth = get_friendly_size($bandwidth);
if(!$attachments)
| $bandwidth = get_friendly_size($bandwidth);
if(!$attachments)
|
Zeile 2867 | Zeile 2987 |
---|
eval("\$attachments = \"".$templates->get("usercp_attachments_none")."\";"); $usagenote = ''; }
|
eval("\$attachments = \"".$templates->get("usercp_attachments_none")."\";"); $usagenote = ''; }
|
|
|
$plugins->run_hooks("usercp_attachments_end");
|
$plugins->run_hooks("usercp_attachments_end");
|
|
|
eval("\$manageattachments = \"".$templates->get("usercp_attachments")."\";"); output_page($manageattachments); }
| eval("\$manageattachments = \"".$templates->get("usercp_attachments")."\";"); output_page($manageattachments); }
|
Zeile 2899 | Zeile 3019 |
---|
{ // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
{ // Verify incoming POST request verify_post_check($mybb->input['my_post_key']);
|
| // Cap at 60,000 chars; text will allow up to 65535? if(my_strlen($mybb->input['notepad']) > 60000) { $mybb->input['notepad'] = my_substr($mybb->input['notepad'], 0, 60000); }
|
$plugins->run_hooks("usercp_do_notepad_start"); $db->update_query("users", array('notepad' => $db->escape_string($mybb->input['notepad'])), "uid='".$mybb->user['uid']."'");
| $plugins->run_hooks("usercp_do_notepad_start"); $db->update_query("users", array('notepad' => $db->escape_string($mybb->input['notepad'])), "uid='".$mybb->user['uid']."'");
|
Zeile 2910 | Zeile 3036 |
---|
{ // Get posts per day $daysreg = (TIME_NOW - $mybb->user['regdate']) / (24*3600);
|
{ // Get posts per day $daysreg = (TIME_NOW - $mybb->user['regdate']) / (24*3600);
|
| if($daysreg < 1) { $daysreg = 1; }
|
$perday = $mybb->user['postnum'] / $daysreg; $perday = round($perday, 2); if($perday > $mybb->user['postnum'])
| $perday = $mybb->user['postnum'] / $daysreg; $perday = round($perday, 2); if($perday > $mybb->user['postnum'])
|
Zeile 2930 | Zeile 3062 |
---|
}
$lang->posts_day = $lang->sprintf($lang->posts_day, my_number_format($perday), $percent);
|
}
$lang->posts_day = $lang->sprintf($lang->posts_day, my_number_format($perday), $percent);
|
$usergroup = $groupscache[$mybb->user['usergroup']]['title'];
| $usergroup = htmlspecialchars_uni($groupscache[$mybb->user['usergroup']]['title']);
|
$colspan = 1; if($mybb->user['avatar'])
| $colspan = 1; if($mybb->user['avatar'])
|
Zeile 2940 | Zeile 3072 |
---|
{ $avatar_width_height = "width=\"{$avatar_dimensions[0]}\" height=\"{$avatar_dimensions[1]}\""; }
|
{ $avatar_width_height = "width=\"{$avatar_dimensions[0]}\" height=\"{$avatar_dimensions[1]}\""; }
|
$mybb->user['avatar'] = htmlspecialchars($mybb->user['avatar']);
| $mybb->user['avatar'] = htmlspecialchars_uni($mybb->user['avatar']);
|
eval("\$avatar = \"".$templates->get("usercp_currentavatar")."\";"); $colspan = 2; }
| eval("\$avatar = \"".$templates->get("usercp_currentavatar")."\";"); $colspan = 2; }
|
Zeile 2962 | Zeile 3094 |
---|
eval("\$reputation = \"".$templates->get("usercp_reputation")."\";"); }
|
eval("\$reputation = \"".$templates->get("usercp_reputation")."\";"); }
|
| $latest_warnings = '';
|
if($mybb->settings['enablewarningsystem'] != 0 && $mybb->settings['canviewownwarning'] != 0) { $warning_level = round($mybb->user['warningpoints']/$mybb->settings['maxwarningpoints']*100);
| if($mybb->settings['enablewarningsystem'] != 0 && $mybb->settings['canviewownwarning'] != 0) { $warning_level = round($mybb->user['warningpoints']/$mybb->settings['maxwarningpoints']*100);
|
Zeile 3051 | Zeile 3184 |
---|
// Format post numbers $mybb->user['posts'] = my_number_format($mybb->user['postnum']);
|
// Format post numbers $mybb->user['posts'] = my_number_format($mybb->user['postnum']);
|
|
|
// Build referral link if($mybb->settings['usereferrals'] == 1) {
| // Build referral link if($mybb->settings['usereferrals'] == 1) {
|
Zeile 3064 | Zeile 3197 |
---|
$mybb->user['notepad'] = htmlspecialchars_uni($mybb->user['notepad']); eval("\$user_notepad = \"".$templates->get("usercp_notepad")."\";"); $plugins->run_hooks("usercp_notepad_end");
|
$mybb->user['notepad'] = htmlspecialchars_uni($mybb->user['notepad']); eval("\$user_notepad = \"".$templates->get("usercp_notepad")."\";"); $plugins->run_hooks("usercp_notepad_end");
|
|
|
// Thread Subscriptions with New Posts
|
// Thread Subscriptions with New Posts
|
| $latest_subscribed = '';
|
$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 = ''; }
|
$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']."'
| WHERE s.uid='".$mybb->user['uid']."' {$visible}
|
ORDER BY t.lastpost DESC LIMIT 0, 10 ");
|
ORDER BY t.lastpost DESC LIMIT 0, 10 ");
|
|
|
$fpermissions = forum_permissions(); while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
$fpermissions = forum_permissions(); while($subscription = $db->fetch_array($query)) { $forumpermissions = $fpermissions[$subscription['fid']];
|
if($forumpermissions['canview'] != 0 || $forumpermissions['canviewthreads'] != 0)
| if($forumpermissions['canview'] != 0 && $forumpermissions['canviewthreads'] != 0 && ($forumpermissions['canonlyviewownthreads'] == 0 || $subscription['uid'] == $mybb->user['uid']))
|
{ $subscriptions[$subscription['tid']] = $subscription; } }
|
{ $subscriptions[$subscription['tid']] = $subscription; } }
|
|
|
if(is_array($subscriptions)) { $tids = implode(",", array_keys($subscriptions));
| if(is_array($subscriptions)) { $tids = implode(",", array_keys($subscriptions));
|
Zeile 3104 | Zeile 3244 |
---|
unset($subscriptions[$readthread['tid']]); // If it's already been read, then don't display the thread } else
|
unset($subscriptions[$readthread['tid']]); // If it's already been read, then don't display the thread } else
|
{
| {
|
$subscriptions[$readthread['tid']]['lastread'] = $readthread['dateline']; } } }
|
$subscriptions[$readthread['tid']]['lastread'] = $readthread['dateline']; } } }
|
|
|
if($subscriptions) { if($mybb->settings['dotfolders'] != 0)
|
if($subscriptions) { if($mybb->settings['dotfolders'] != 0)
|
{
| {
|
$query = $db->simple_select("posts", "tid,uid", "uid='{$mybb->user['uid']}' AND tid IN ({$tids})"); while($post = $db->fetch_array($query)) {
| $query = $db->simple_select("posts", "tid,uid", "uid='{$mybb->user['uid']}' AND tid IN ({$tids})"); while($post = $db->fetch_array($query)) {
|
Zeile 3122 | Zeile 3262 |
---|
}
$icon_cache = $cache->read("posticons");
|
}
$icon_cache = $cache->read("posticons");
|
|
|
foreach($subscriptions as $thread) {
|
foreach($subscriptions as $thread) {
|
| $folder = ''; $folder_label = ''; $gotounread = '';
|
if($thread['tid']) { $bgcolor = alt_trow();
| if($thread['tid']) { $bgcolor = alt_trow();
|
Zeile 3138 | Zeile 3282 |
---|
{ $query = $db->simple_select('threadprefixes', 'prefix, displaystyle', "pid='{$thread['prefix']}'"); $threadprefix = $db->fetch_array($query);
|
{ $query = $db->simple_select('threadprefixes', 'prefix, displaystyle', "pid='{$thread['prefix']}'"); $threadprefix = $db->fetch_array($query);
|
|
|
$thread['displayprefix'] = $threadprefix['displaystyle'].' '; } else
| $thread['displayprefix'] = $threadprefix['displaystyle'].' '; } else
|
Zeile 3150 | Zeile 3294 |
---|
if($thread['icon'] > 0 && $icon_cache[$thread['icon']]) { $icon = $icon_cache[$thread['icon']];
|
if($thread['icon'] > 0 && $icon_cache[$thread['icon']]) { $icon = $icon_cache[$thread['icon']];
|
| $icon['path'] = htmlspecialchars_uni($icon['path']); $icon['name'] = htmlspecialchars_uni($icon['name']);
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />"; } else { $icon = " "; }
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />"; } else { $icon = " "; }
|
|
|
if($thread['doticon']) { $folder = "dot_"; $folder_label .= $lang->icon_dot; }
|
if($thread['doticon']) { $folder = "dot_"; $folder_label .= $lang->icon_dot; }
|
|
|
// Check to see which icon we display if($thread['lastread'] && $thread['lastread'] < $thread['lastpost'])
|
// Check to see which icon we display if($thread['lastread'] && $thread['lastread'] < $thread['lastpost'])
|
{
| {
|
$folder .= "new"; $folder_label .= $lang->icon_new; $new_class = "subject_new"; $thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost"); eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";");
|
$folder .= "new"; $folder_label .= $lang->icon_new; $new_class = "subject_new"; $thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost"); eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";");
|
} else {
| } else {
|
$folder_label .= $lang->icon_no_new; $new_class = "subject_old"; }
|
$folder_label .= $lang->icon_no_new; $new_class = "subject_old"; }
|
|
|
$folder .= "folder";
|
$folder .= "folder";
|
| if($thread['visible'] == 0) { $bgcolor = "trow_shaded"; }
|
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']); $lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']); $lastposter = $thread['lastposter']; $lastposteruid = $thread['lastposteruid'];
|
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']); $lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']); $lastposter = $thread['lastposter']; $lastposteruid = $thread['lastposteruid'];
|
|
|
if($lastposteruid == 0) { $lastposterlink = $lastposter;
|
if($lastposteruid == 0) { $lastposterlink = $lastposter;
|
}
| }
|
else { $lastposterlink = build_profile_link($lastposter, $lastposteruid); }
|
else { $lastposterlink = build_profile_link($lastposter, $lastposteruid); }
|
|
|
$thread['replies'] = my_number_format($thread['replies']); $thread['views'] = my_number_format($thread['views']); $thread['author'] = build_profile_link($thread['username'], $thread['uid']);
|
$thread['replies'] = my_number_format($thread['replies']); $thread['views'] = my_number_format($thread['views']); $thread['author'] = build_profile_link($thread['username'], $thread['uid']);
|
|
|
eval("\$latest_subscribed_threads .= \"".$templates->get("usercp_latest_subscribed_threads")."\";"); } } eval("\$latest_subscribed = \"".$templates->get("usercp_latest_subscribed")."\";"); }
|
eval("\$latest_subscribed_threads .= \"".$templates->get("usercp_latest_subscribed_threads")."\";"); } } eval("\$latest_subscribed = \"".$templates->get("usercp_latest_subscribed")."\";"); }
|
}
| }
|
}
|
}
|
|
|
// User's Latest Threads
// Get unviewable forums
|
// User's Latest Threads
// Get unviewable forums
|
| $f_perm_sql = '';
|
$unviewable_forums = get_unviewable_forums(); if($unviewable_forums) { $f_perm_sql = "AND t.fid NOT IN (".$unviewable_forums.")";
|
$unviewable_forums = get_unviewable_forums(); if($unviewable_forums) { $f_perm_sql = "AND t.fid NOT IN (".$unviewable_forums.")";
|
| }
$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']."' {$f_perm_sql}
| WHERE t.uid='".$mybb->user['uid']."' AND t.firstpost != 0 AND t.visible != '-2' {$visible} {$f_perm_sql}
|
ORDER BY t.lastpost DESC LIMIT 0, 5 ");
| ORDER BY t.lastpost DESC LIMIT 0, 5 ");
|
Zeile 3239 | Zeile 3397 |
---|
if($forumpermissions['canview'] != 0 || $forumpermissions['canviewthreads'] != 0) { $threadcache[$thread['tid']] = $thread;
|
if($forumpermissions['canview'] != 0 || $forumpermissions['canviewthreads'] != 0) { $threadcache[$thread['tid']] = $thread;
|
} }
| } }
|
if(!empty($threadcache)) { $tids = implode(",", array_keys($threadcache));
|
if(!empty($threadcache)) { $tids = implode(",", array_keys($threadcache));
|
|
|
// Read Forums $query = $db->query(" SELECT f.fid, fr.dateline AS lastread
| // Read Forums $query = $db->query(" SELECT f.fid, fr.dateline AS lastread
|
Zeile 3255 | Zeile 3413 |
---|
ORDER BY pid, disporder "); while($forum = $db->fetch_array($query))
|
ORDER BY pid, disporder "); while($forum = $db->fetch_array($query))
|
{
| {
|
$readforums[$forum['fid']] = $forum['lastread']; }
| $readforums[$forum['fid']] = $forum['lastread']; }
|
Zeile 3264 | Zeile 3422 |
---|
{ $query = $db->simple_select("threadsread", "*", "uid='{$mybb->user['uid']}' AND tid IN ({$tids})"); while($readthread = $db->fetch_array($query))
|
{ $query = $db->simple_select("threadsread", "*", "uid='{$mybb->user['uid']}' AND tid IN ({$tids})"); while($readthread = $db->fetch_array($query))
|
{
| {
|
$threadcache[$readthread['tid']]['lastread'] = $readthread['dateline']; } }
| $threadcache[$readthread['tid']]['lastread'] = $readthread['dateline']; } }
|
Zeile 3278 | Zeile 3436 |
---|
$threadcache[$post['tid']]['doticon'] = 1; } }
|
$threadcache[$post['tid']]['doticon'] = 1; } }
|
|
|
$icon_cache = $cache->read("posticons");
|
$icon_cache = $cache->read("posticons");
|
|
|
// Run the threads...
|
// Run the threads...
|
| $latest_threads_threads = '';
|
foreach($threadcache as $thread) { if($thread['tid'])
| foreach($threadcache as $thread) { if($thread['tid'])
|
Zeile 3294 | Zeile 3453 |
---|
$isnew = 0; $donenew = 0; $lastread = 0;
|
$isnew = 0; $donenew = 0; $lastread = 0;
|
|
|
// If this thread has a prefix... if($thread['prefix'] != 0) {
| // If this thread has a prefix... if($thread['prefix'] != 0) {
|
Zeile 3302 | Zeile 3461 |
---|
$threadprefix = $db->fetch_array($query);
$thread['displayprefix'] = $threadprefix['displaystyle'].' ';
|
$threadprefix = $db->fetch_array($query);
$thread['displayprefix'] = $threadprefix['displaystyle'].' ';
|
} else
| } else
|
{ $thread['displayprefix'] = ''; }
|
{ $thread['displayprefix'] = ''; }
|
|
|
$thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']); $thread['threadlink'] = get_thread_link($thread['tid']);
| $thread['subject'] = $parser->parse_badwords($thread['subject']); $thread['subject'] = htmlspecialchars_uni($thread['subject']); $thread['threadlink'] = get_thread_link($thread['tid']);
|
Zeile 3316 | Zeile 3475 |
---|
if($thread['icon'] > 0 && $icon_cache[$thread['icon']]) { $icon = $icon_cache[$thread['icon']];
|
if($thread['icon'] > 0 && $icon_cache[$thread['icon']]) { $icon = $icon_cache[$thread['icon']];
|
| $icon['path'] = htmlspecialchars_uni($icon['path']); $icon['name'] = htmlspecialchars_uni($icon['name']);
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />";
|
$icon = "<img src=\"{$icon['path']}\" alt=\"{$icon['name']}\" />";
|
}
| }
|
else { $icon = " "; }
|
else { $icon = " "; }
|
|
|
if($mybb->settings['threadreadcut'] > 0) { $forum_read = $readforums[$thread['fid']];
|
if($mybb->settings['threadreadcut'] > 0) { $forum_read = $readforums[$thread['fid']];
|
|
|
$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff) { $forum_read = $read_cutoff;
|
$read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff) { $forum_read = $read_cutoff;
|
} }
| } }
|
if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read) { $cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; }
|
if($mybb->settings['threadreadcut'] > 0 && $thread['lastpost'] > $forum_read) { $cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; }
|
| $cutoff = 0;
|
if($thread['lastpost'] > $cutoff) { if($thread['lastread']) { $lastread = $thread['lastread'];
|
if($thread['lastpost'] > $cutoff) { if($thread['lastread']) { $lastread = $thread['lastread'];
|
}
| }
|
}
|
}
|
|
|
if(!$lastread) { $readcookie = $threadread = my_get_array_cookie("threadread", $thread['tid']); if($readcookie > $forum_read)
|
if(!$lastread) { $readcookie = $threadread = my_get_array_cookie("threadread", $thread['tid']); if($readcookie > $forum_read)
|
{
| {
|
$lastread = $readcookie; } else
| $lastread = $readcookie; } else
|
Zeile 3375 | Zeile 3537 |
---|
$thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost"); eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";"); $unreadpost = 1;
|
$thread['newpostlink'] = get_thread_link($thread['tid'], 0, "newpost"); eval("\$gotounread = \"".$templates->get("forumdisplay_thread_gotounread")."\";"); $unreadpost = 1;
|
} else {
| } else {
|
$folder_label .= $lang->icon_no_new; $new_class = "subject_old"; }
if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews'])
|
$folder_label .= $lang->icon_no_new; $new_class = "subject_old"; }
if($thread['replies'] >= $mybb->settings['hottopic'] || $thread['views'] >= $mybb->settings['hottopicviews'])
|
{
| {
|
$folder .= "hot"; $folder_label .= $lang->icon_hot;
|
$folder .= "hot"; $folder_label .= $lang->icon_hot;
|
| }
// Is our thread visible? if($thread['visible'] == 0) { $bgcolor = 'trow_shaded';
|
}
if($thread['closed'] == 1) { $folder .= "lock"; $folder_label .= $lang->icon_lock;
|
}
if($thread['closed'] == 1) { $folder .= "lock"; $folder_label .= $lang->icon_lock;
|
}
| }
|
$folder .= "folder";
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']);
| $folder .= "folder";
$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']);
|
Zeile 3404 | Zeile 3572 |
---|
if($lastposteruid == 0) { $lastposterlink = $lastposter;
|
if($lastposteruid == 0) { $lastposterlink = $lastposter;
|
}
| }
|
else { $lastposterlink = build_profile_link($lastposter, $lastposteruid); }
|
else { $lastposterlink = build_profile_link($lastposter, $lastposteruid); }
|
|
|
$thread['replies'] = my_number_format($thread['replies']); $thread['views'] = my_number_format($thread['views']); $thread['author'] = build_profile_link($thread['username'], $thread['uid']);
| $thread['replies'] = my_number_format($thread['replies']); $thread['views'] = my_number_format($thread['views']); $thread['author'] = build_profile_link($thread['username'], $thread['uid']);
|
Zeile 3420 | Zeile 3588 |
---|
eval("\$latest_threads = \"".$templates->get("usercp_latest_threads")."\";"); }
|
eval("\$latest_threads = \"".$templates->get("usercp_latest_threads")."\";"); }
|
|
|
$plugins->run_hooks("usercp_end");
eval("\$usercp = \"".$templates->get("usercp")."\";");
| $plugins->run_hooks("usercp_end");
eval("\$usercp = \"".$templates->get("usercp")."\";");
|