Zeile 322 | Zeile 322 |
---|
/** * Turn a unix timestamp in to a "friendly" date/time format for the user. *
|
/** * Turn a unix timestamp in to a "friendly" date/time format for the user. *
|
* @param string $format A date format according to PHP's date structure.
| * @param string $format A date format (either relative, normal or PHP's date() structure).
|
* @param int $stamp The unix timestamp the date should be generated for. * @param int|string $offset The offset in hours that should be applied to times. (timezones) Or an empty string to determine that automatically * @param int $ty Whether or not to use today/yesterday formatting.
| * @param int $stamp The unix timestamp the date should be generated for. * @param int|string $offset The offset in hours that should be applied to times. (timezones) Or an empty string to determine that automatically * @param int $ty Whether or not to use today/yesterday formatting.
|
Zeile 343 | Zeile 343 |
---|
{ if(isset($mybb->user['uid']) && $mybb->user['uid'] != 0 && array_key_exists("timezone", $mybb->user)) {
|
{ if(isset($mybb->user['uid']) && $mybb->user['uid'] != 0 && array_key_exists("timezone", $mybb->user)) {
|
$offset = $mybb->user['timezone'];
| $offset = (float)$mybb->user['timezone'];
|
$dstcorrection = $mybb->user['dst']; } elseif(defined("IN_ADMINCP")) {
|
$dstcorrection = $mybb->user['dst']; } elseif(defined("IN_ADMINCP")) {
|
$offset = $mybbadmin['timezone'];
| $offset = (float)$mybbadmin['timezone'];
|
$dstcorrection = $mybbadmin['dst']; } else {
|
$dstcorrection = $mybbadmin['dst']; } else {
|
$offset = $mybb->settings['timezoneoffset'];
| $offset = (float)$mybb->settings['timezoneoffset'];
|
$dstcorrection = $mybb->settings['dstcorrection']; }
| $dstcorrection = $mybb->settings['dstcorrection']; }
|
Zeile 380 | Zeile 380 |
---|
}
$todaysdate = $yesterdaysdate = '';
|
}
$todaysdate = $yesterdaysdate = '';
|
if($ty && ($format == $mybb->settings['dateformat'] || $format == 'relative'))
| if($ty && ($format == $mybb->settings['dateformat'] || $format == 'relative' || $format == 'normal'))
|
{ $_stamp = TIME_NOW; if($adodb == true)
| { $_stamp = TIME_NOW; if($adodb == true)
|
Zeile 400 | Zeile 400 |
---|
if($format == 'relative') { // Relative formats both date and time
|
if($format == 'relative') { // Relative formats both date and time
|
| $real_date = $real_time = ''; if($adodb == true) { $real_date = adodb_date($mybb->settings['dateformat'], $stamp + ($offset * 3600)); $real_time = $mybb->settings['datetimesep']; $real_time .= adodb_date($mybb->settings['timeformat'], $stamp + ($offset * 3600)); } else { $real_date = gmdate($mybb->settings['dateformat'], $stamp + ($offset * 3600)); $real_time = $mybb->settings['datetimesep']; $real_time .= gmdate($mybb->settings['timeformat'], $stamp + ($offset * 3600)); }
|
if($ty != 2 && abs(TIME_NOW - $stamp) < 3600) { $diff = TIME_NOW - $stamp; $relative = array('prefix' => '', 'minute' => 0, 'plural' => $lang->rel_minutes_plural, 'suffix' => $lang->rel_ago);
|
if($ty != 2 && abs(TIME_NOW - $stamp) < 3600) { $diff = TIME_NOW - $stamp; $relative = array('prefix' => '', 'minute' => 0, 'plural' => $lang->rel_minutes_plural, 'suffix' => $lang->rel_ago);
|
if($diff < 0) { $diff = abs($diff); $relative['suffix'] = ''; $relative['prefix'] = $lang->rel_in; }
| if($diff < 0) { $diff = abs($diff); $relative['suffix'] = ''; $relative['prefix'] = $lang->rel_in; }
|
$relative['minute'] = floor($diff / 60);
if($relative['minute'] <= 1)
| $relative['minute'] = floor($diff / 60);
if($relative['minute'] <= 1)
|
Zeile 426 | Zeile 440 |
---|
$relative['prefix'] = $lang->rel_less_than; }
|
$relative['prefix'] = $lang->rel_less_than; }
|
$date = $lang->sprintf($lang->rel_time, $relative['prefix'], $relative['minute'], $relative['plural'], $relative['suffix']);
| $date = $lang->sprintf($lang->rel_time, $relative['prefix'], $relative['minute'], $relative['plural'], $relative['suffix'], $real_date, $real_time);
|
} elseif($ty != 2 && abs(TIME_NOW - $stamp) < 43200) {
| } elseif($ty != 2 && abs(TIME_NOW - $stamp) < 43200) {
|
Zeile 446 | Zeile 460 |
---|
{ $relative['hour'] = 1; $relative['plural'] = $lang->rel_hours_single;
|
{ $relative['hour'] = 1; $relative['plural'] = $lang->rel_hours_single;
|
}
$date = $lang->sprintf($lang->rel_time, $relative['prefix'], $relative['hour'], $relative['plural'], $relative['suffix']); }
| }
$date = $lang->sprintf($lang->rel_time, $relative['prefix'], $relative['hour'], $relative['plural'], $relative['suffix'], $real_date, $real_time); }
|
else { if($ty) { if($todaysdate == $date)
|
else { if($ty) { if($todaysdate == $date)
|
{ $date = $lang->today;
| { $date = $lang->sprintf($lang->today_rel, $real_date);
|
} else if($yesterdaysdate == $date) {
|
} else if($yesterdaysdate == $date) {
|
$date = $lang->yesterday;
| $date = $lang->sprintf($lang->yesterday_rel, $real_date);
|
}
|
}
|
}
| }
|
$date .= $mybb->settings['datetimesep']; if($adodb == true)
|
$date .= $mybb->settings['datetimesep']; if($adodb == true)
|
{
| {
|
$date .= adodb_date($mybb->settings['timeformat'], $stamp + ($offset * 3600));
|
$date .= adodb_date($mybb->settings['timeformat'], $stamp + ($offset * 3600));
|
}
| }
|
else
|
else
|
{
| {
|
$date .= gmdate($mybb->settings['timeformat'], $stamp + ($offset * 3600)); }
|
$date .= gmdate($mybb->settings['timeformat'], $stamp + ($offset * 3600)); }
|
| } } elseif($format == 'normal') { // Normal format both date and time if($ty != 2) { if($todaysdate == $date) { $date = $lang->today; } else if($yesterdaysdate == $date) { $date = $lang->yesterday; } }
$date .= $mybb->settings['datetimesep']; if($adodb == true) { $date .= adodb_date($mybb->settings['timeformat'], $stamp + ($offset * 3600)); } else { $date .= gmdate($mybb->settings['timeformat'], $stamp + ($offset * 3600));
|
} } else
| } } else
|
Zeile 497 | Zeile 536 |
---|
else { $date = gmdate($format, $stamp + ($offset * 3600));
|
else { $date = gmdate($format, $stamp + ($offset * 3600));
|
} } }
| } } }
|
if(is_object($plugins)) {
| if(is_object($plugins)) {
|
Zeile 782 | Zeile 821 |
---|
eval("\$errorpage = \"".$templates->get("error")."\";"); output_page($errorpage);
|
eval("\$errorpage = \"".$templates->get("error")."\";"); output_page($errorpage);
|
exit; }
/**
| exit; }
/**
|
* Produce an error message for displaying inline on a page * * @param array $errors Array of errors to be shown
| * Produce an error message for displaying inline on a page * * @param array $errors Array of errors to be shown
|
Zeile 809 | Zeile 848 |
---|
}
// AJAX error message?
|
}
// AJAX error message?
|
if($mybb->get_input('ajax', MyBB::INPUT_INT)) {
| if($mybb->get_input('ajax', MyBB::INPUT_INT)) {
|
// Send our headers. @header("Content-type: application/json; charset={$lang->settings['charset']}");
if(empty($json_data))
|
// Send our headers. @header("Content-type: application/json; charset={$lang->settings['charset']}");
if(empty($json_data))
|
{
| {
|
echo json_encode(array("errors" => $errors)); } else { echo json_encode(array_merge(array("errors" => $errors), $json_data));
|
echo json_encode(array("errors" => $errors)); } else { echo json_encode(array_merge(array("errors" => $errors), $json_data));
|
} exit;
| } exit;
|
}
$errorlist = '';
| }
$errorlist = '';
|
Zeile 846 | Zeile 885 |
---|
$time = TIME_NOW; $plugins->run_hooks("no_permission");
|
$time = TIME_NOW; $plugins->run_hooks("no_permission");
|
|
|
$noperm_array = array ( "nopermission" => '1', "location1" => 0,
| $noperm_array = array ( "nopermission" => '1', "location1" => 0,
|
Zeile 882 | Zeile 921 |
---|
switch($mybb->settings['username_method']) { case 0:
|
switch($mybb->settings['username_method']) { case 0:
|
$lang_username = $lang->username;
| $lang_username = $lang->username;
|
break; case 1: $lang_username = $lang->username1;
|
break; case 1: $lang_username = $lang->username1;
|
break;
| break;
|
case 2: $lang_username = $lang->username2;
|
case 2: $lang_username = $lang->username2;
|
break;
| break;
|
default: $lang_username = $lang->username; break;
|
default: $lang_username = $lang->username; break;
|
}
| }
|
eval("\$errorpage = \"".$templates->get("error_nopermission")."\";"); }
| eval("\$errorpage = \"".$templates->get("error_nopermission")."\";"); }
|
Zeile 917 | Zeile 956 |
---|
$plugins->run_hooks("redirect", $redirect_args);
if($mybb->get_input('ajax', MyBB::INPUT_INT))
|
$plugins->run_hooks("redirect", $redirect_args);
if($mybb->get_input('ajax', MyBB::INPUT_INT))
|
{
| {
|
// Send our headers. //@header("Content-type: text/html; charset={$lang->settings['charset']}"); $data = "<script type=\"text/javascript\">\n";
| // Send our headers. //@header("Content-type: text/html; charset={$lang->settings['charset']}"); $data = "<script type=\"text/javascript\">\n";
|
Zeile 940 | Zeile 979 |
---|
if(!$message) { $message = $lang->redirect;
|
if(!$message) { $message = $lang->redirect;
|
}
| }
|
$time = TIME_NOW; $timenow = my_date('relative', $time);
|
$time = TIME_NOW; $timenow = my_date('relative', $time);
|
|
|
if(!$title) { $title = $mybb->settings['bbname'];
| if(!$title) { $title = $mybb->settings['bbname'];
|
Zeile 952 | Zeile 991 |
---|
// Show redirects only if both ACP and UCP settings are enabled, or ACP is enabled, and user is a guest, or they are forced. if($force_redirect == true || ($mybb->settings['redirects'] == 1 && ($mybb->user['showredirect'] == 1 || !$mybb->user['uid'])))
|
// Show redirects only if both ACP and UCP settings are enabled, or ACP is enabled, and user is a guest, or they are forced. if($force_redirect == true || ($mybb->settings['redirects'] == 1 && ($mybb->user['showredirect'] == 1 || !$mybb->user['uid'])))
|
{
| {
|
$url = str_replace("&", "&", $url); $url = htmlspecialchars_uni($url);
| $url = str_replace("&", "&", $url); $url = htmlspecialchars_uni($url);
|
Zeile 966 | Zeile 1005 |
---|
run_shutdown();
|
run_shutdown();
|
if(!my_validate_url($url, true))
| if(!my_validate_url($url, true, true))
|
{ header("Location: {$mybb->settings['bburl']}/{$url}"); }
| { header("Location: {$mybb->settings['bburl']}/{$url}"); }
|
Zeile 977 | Zeile 1016 |
---|
}
exit;
|
}
exit;
|
}
/**
| }
/**
|
* Generate a listing of page - pagination * * @param int $count The number of items
| * Generate a listing of page - pagination * * @param int $count The number of items
|
Zeile 992 | Zeile 1031 |
---|
function multipage($count, $perpage, $page, $url, $breadcrumb=false) { global $theme, $templates, $lang, $mybb;
|
function multipage($count, $perpage, $page, $url, $breadcrumb=false) { global $theme, $templates, $lang, $mybb;
|
|
|
if($count <= $perpage) { return ''; }
|
if($count <= $perpage) { return ''; }
|
| $page = (int)$page;
|
$url = str_replace("&", "&", $url); $url = htmlspecialchars_uni($url);
| $url = str_replace("&", "&", $url); $url = htmlspecialchars_uni($url);
|
Zeile 1102 | Zeile 1143 |
---|
eval("\$jumptopage = \"".$templates->get("multipage_jump_page")."\";"); }
|
eval("\$jumptopage = \"".$templates->get("multipage_jump_page")."\";"); }
|
$lang->multipage_pages = $lang->sprintf($lang->multipage_pages, $pages);
| $multipage_pages = $lang->sprintf($lang->multipage_pages, $pages);
|
if($breadcrumb == true) {
| if($breadcrumb == true) {
|
Zeile 1162 | Zeile 1203 |
---|
/** * Fetch the permissions for a specific user *
|
/** * Fetch the permissions for a specific user *
|
* @param int $uid The user ID
| * @param int $uid The user ID, if no user ID is provided then current user's ID will be considered.
|
* @return array Array of user permissions for the specified user */
|
* @return array Array of user permissions for the specified user */
|
function user_permissions($uid=0)
| function user_permissions($uid=null)
|
{ global $mybb, $cache, $groupscache, $user_cache;
// If no user id is specified, assume it is the current user
|
{ global $mybb, $cache, $groupscache, $user_cache;
// If no user id is specified, assume it is the current user
|
| if($uid === null) { $uid = $mybb->user['uid']; }
// Its a guest. Return the group permissions directly from cache
|
if($uid == 0) {
|
if($uid == 0) {
|
$uid = $mybb->user['uid'];
| return $groupscache[1];
|
}
// User id does not match current user, fetch permissions if($uid != $mybb->user['uid']) { // We've already cached permissions for this user, return them.
|
}
// User id does not match current user, fetch permissions if($uid != $mybb->user['uid']) { // We've already cached permissions for this user, return them.
|
if($user_cache[$uid]['permissions'])
| if(!empty($user_cache[$uid]['permissions']))
|
{ return $user_cache[$uid]['permissions']; }
// This user was not already cached, fetch their user information.
|
{ return $user_cache[$uid]['permissions']; }
// This user was not already cached, fetch their user information.
|
if(!$user_cache[$uid])
| if(empty($user_cache[$uid]))
|
{ $user_cache[$uid] = get_user($uid); }
| { $user_cache[$uid] = get_user($uid); }
|
Zeile 1774 | Zeile 1821 |
---|
$iconlist = ''; $no_icons_checked = " checked=\"checked\""; // read post icons from cache, and sort them accordingly
|
$iconlist = ''; $no_icons_checked = " checked=\"checked\""; // read post icons from cache, and sort them accordingly
|
$posticons_cache = $cache->read("posticons");
| $posticons_cache = (array)$cache->read("posticons");
|
$posticons = array(); foreach($posticons_cache as $posticon) {
| $posticons = array(); foreach($posticons_cache as $posticon) {
|
Zeile 1820 | Zeile 1867 |
---|
* @param string $value The cookie value. * @param int|string $expires The timestamp of the expiry date. * @param boolean $httponly True if setting a HttpOnly cookie (supported by the majority of web browsers)
|
* @param string $value The cookie value. * @param int|string $expires The timestamp of the expiry date. * @param boolean $httponly True if setting a HttpOnly cookie (supported by the majority of web browsers)
|
| * @param string $samesite The samesite attribute to prevent CSRF.
|
*/
|
*/
|
function my_setcookie($name, $value="", $expires="", $httponly=false)
| function my_setcookie($name, $value="", $expires="", $httponly=false, $samesite="")
|
{ global $mybb;
| { global $mybb;
|
Zeile 1870 | Zeile 1918 |
---|
$cookie .= "; HttpOnly"; }
|
$cookie .= "; HttpOnly"; }
|
$mybb->cookies[$name] = $value;
| if($samesite != "" && $mybb->settings['cookiesamesiteflag']) { $samesite = strtolower($samesite);
if($samesite == "lax" || $samesite == "strict") { $cookie .= "; SameSite=".$samesite; } }
if($mybb->settings['cookiesecureflag']) { $cookie .= "; Secure"; }
$mybb->cookies[$name] = $value;
|
header($cookie, false); }
/** * Unset a cookie set by MyBB.
|
header($cookie, false); }
/** * Unset a cookie set by MyBB.
|
* * @param string $name The cookie identifier.
| * * @param string $name The cookie identifier.
|
*/ function my_unsetcookie($name) { global $mybb;
$expires = -3600;
|
*/ function my_unsetcookie($name) { global $mybb;
$expires = -3600;
|
my_setcookie($name, "", $expires);
| my_setcookie($name, "", $expires);
|
unset($mybb->cookies[$name]); }
/** * Get the contents from a serialised cookie array.
|
unset($mybb->cookies[$name]); }
/** * Get the contents from a serialised cookie array.
|
* * @param string $name The cookie identifier. * @param int $id The cookie content id.
| * * @param string $name The cookie identifier. * @param int $id The cookie content id.
|
* @return array|boolean The cookie id's content array or false when non-existent. */ function my_get_array_cookie($name, $id)
| * @return array|boolean The cookie id's content array or false when non-existent. */ function my_get_array_cookie($name, $id)
|
Zeile 1902 | Zeile 1965 |
---|
global $mybb;
if(!isset($mybb->cookies['mybb'][$name]))
|
global $mybb;
if(!isset($mybb->cookies['mybb'][$name]))
|
{
| {
|
return false; }
|
return false; }
|
|
|
$cookie = my_unserialize($mybb->cookies['mybb'][$name]);
if(is_array($cookie) && isset($cookie[$id])) { return $cookie[$id];
|
$cookie = my_unserialize($mybb->cookies['mybb'][$name]);
if(is_array($cookie) && isset($cookie[$id])) { return $cookie[$id];
|
}
| }
|
else { return 0;
| else { return 0;
|
Zeile 1934 | Zeile 1997 |
---|
if(isset($cookie[$name])) { $newcookie = my_unserialize($cookie[$name]);
|
if(isset($cookie[$name])) { $newcookie = my_unserialize($cookie[$name]);
|
} else
| } else
|
{ $newcookie = array(); }
| { $newcookie = array(); }
|
Zeile 1968 | Zeile 2031 |
---|
function _safe_unserialize($str) { if(strlen($str) > MAX_SERIALIZED_INPUT_LENGTH)
|
function _safe_unserialize($str) { if(strlen($str) > MAX_SERIALIZED_INPUT_LENGTH)
|
{
| {
|
// input exceeds MAX_SERIALIZED_INPUT_LENGTH
|
// input exceeds MAX_SERIALIZED_INPUT_LENGTH
|
return false; }
| return false; }
|
if(empty($str) || !is_string($str)) { return false; }
|
if(empty($str) || !is_string($str)) { return false; }
|
|
|
$stack = array(); $expected = array();
| $stack = array(); $expected = array();
|
Zeile 2001 | Zeile 2064 |
---|
{ $value = null; $str = substr($str, 2);
|
{ $value = null; $str = substr($str, 2);
|
}
| }
|
else if($type == 'b' && preg_match('/^b:([01]);/', $str, $matches))
|
else if($type == 'b' && preg_match('/^b:([01]);/', $str, $matches))
|
{
| {
|
$value = $matches[1] == '1' ? true : false; $str = substr($str, 4); } else if($type == 'i' && preg_match('/^i:(-?[0-9]+);(.*)/s', $str, $matches)) { $value = (int)$matches[1];
|
$value = $matches[1] == '1' ? true : false; $str = substr($str, 4); } else if($type == 'i' && preg_match('/^i:(-?[0-9]+);(.*)/s', $str, $matches)) { $value = (int)$matches[1];
|
$str = $matches[2]; }
| $str = $matches[2]; }
|
else if($type == 'd' && preg_match('/^d:(-?[0-9]+\.?[0-9]*(E[+-][0-9]+)?);(.*)/s', $str, $matches)) { $value = (float)$matches[1]; $str = $matches[3]; } else if($type == 's' && preg_match('/^s:([0-9]+):"(.*)/s', $str, $matches) && substr($matches[2], (int)$matches[1], 2) == '";')
|
else if($type == 'd' && preg_match('/^d:(-?[0-9]+\.?[0-9]*(E[+-][0-9]+)?);(.*)/s', $str, $matches)) { $value = (float)$matches[1]; $str = $matches[3]; } else if($type == 's' && preg_match('/^s:([0-9]+):"(.*)/s', $str, $matches) && substr($matches[2], (int)$matches[1], 2) == '";')
|
{
| {
|
$value = substr($matches[2], 0, (int)$matches[1]); $str = substr($matches[2], (int)$matches[1] + 2); }
| $value = substr($matches[2], 0, (int)$matches[1]); $str = substr($matches[2], (int)$matches[1] + 2); }
|
Zeile 2026 | Zeile 2089 |
---|
{ $expectedLength = (int)$matches[1]; $str = $matches[2];
|
{ $expectedLength = (int)$matches[1]; $str = $matches[2];
|
}
| }
|
else { // object or unknown/malformed type
| else { // object or unknown/malformed type
|
Zeile 2043 | Zeile 2106 |
---|
// array nesting exceeds MAX_SERIALIZED_ARRAY_DEPTH return false; }
|
// array nesting exceeds MAX_SERIALIZED_ARRAY_DEPTH return false; }
|
|
|
$stack[] = &$list; $list[$key] = array(); $list = &$list[$key];
| $stack[] = &$list; $list[$key] = array(); $list = &$list[$key];
|
Zeile 2067 | Zeile 2130 |
---|
if(count($list) < end($expected)) { // array size less than expected
|
if(count($list) < end($expected)) { // array size less than expected
|
return false;
| return false;
|
}
unset($list);
| }
unset($list);
|
Zeile 2084 | Zeile 2147 |
---|
if($type == 'i' || $type == 's') { if(count($list) >= MAX_SERIALIZED_ARRAY_LENGTH)
|
if($type == 'i' || $type == 's') { if(count($list) >= MAX_SERIALIZED_ARRAY_LENGTH)
|
{
| {
|
// array size exceeds MAX_SERIALIZED_ARRAY_LENGTH
|
// array size exceeds MAX_SERIALIZED_ARRAY_LENGTH
|
return false; }
| return false; }
|
if(count($list) >= end($expected)) { // array size exceeds expected length
|
if(count($list) >= end($expected)) { // array size exceeds expected length
|
return false; }
| return false; }
|
$key = $value; $state = 3; break; }
// illegal array index type
|
$key = $value; $state = 3; break; }
// illegal array index type
|
return false;
| return false;
|
case 0: // expecting array or value if($type == 'a')
| case 0: // expecting array or value if($type == 'a')
|
Zeile 2133 | Zeile 2196 |
---|
{ // trailing data in input return false;
|
{ // trailing data in input return false;
|
}
| }
|
return $data; }
| return $data; }
|
Zeile 2181 | Zeile 2244 |
---|
}
if(is_bool($value))
|
}
if(is_bool($value))
|
{
| {
|
return 'b:'.(int)$value.';';
|
return 'b:'.(int)$value.';';
|
}
| }
|
if(is_int($value)) { return 'i:'.$value.';';
|
if(is_int($value)) { return 'i:'.$value.';';
|
}
| }
|
if(is_float($value))
|
if(is_float($value))
|
{
| {
|
return 'd:'.str_replace(',', '.', $value).';';
|
return 'd:'.str_replace(',', '.', $value).';';
|
}
| }
|
if(is_string($value)) { return 's:'.strlen($value).':"'.$value.'";';
|
if(is_string($value)) { return 's:'.strlen($value).':"'.$value.'";';
|
}
| }
|
if(is_array($value)) { $out = '';
| if(is_array($value)) { $out = '';
|
Zeile 2395 | Zeile 2458 |
---|
if($new_stats[$counter] >= 0) { $new_stats[$counter] = "+{$new_stats[$counter]}";
|
if($new_stats[$counter] >= 0) { $new_stats[$counter] = "+{$new_stats[$counter]}";
|
} }
| } }
|
// Less than 0? That's bad elseif($new_stats[$counter] < 0) {
| // Less than 0? That's bad elseif($new_stats[$counter] < 0) {
|
Zeile 2413 | Zeile 2476 |
---|
$new_stats[$counter] = 0; } }
|
$new_stats[$counter] = 0; } }
|
} }
| } }
|
if(!$force) {
| if(!$force) {
|
Zeile 2424 | Zeile 2487 |
---|
// Fetch latest user if the user count is changing if(array_key_exists('numusers', $changes))
|
// Fetch latest user if the user count is changing if(array_key_exists('numusers', $changes))
|
{
| {
|
$query = $db->simple_select("users", "uid, username", "", array('order_by' => 'regdate', 'order_dir' => 'DESC', 'limit' => 1)); $lastmember = $db->fetch_array($query); $new_stats['lastuid'] = $lastmember['uid'];
| $query = $db->simple_select("users", "uid, username", "", array('order_by' => 'regdate', 'order_dir' => 'DESC', 'limit' => 1)); $lastmember = $db->fetch_array($query); $new_stats['lastuid'] = $lastmember['uid'];
|
Zeile 2473 | Zeile 2536 |
---|
// Fetch above counters for this forum $query = $db->simple_select("forums", implode(",", $counters), "fid='{$fid}'"); $forum = $db->fetch_array($query);
|
// Fetch above counters for this forum $query = $db->simple_select("forums", implode(",", $counters), "fid='{$fid}'"); $forum = $db->fetch_array($query);
|
foreach($counters as $counter) { if(array_key_exists($counter, $changes)) {
| foreach($counters as $counter) { if(array_key_exists($counter, $changes)) {
|
if(substr($changes[$counter], 0, 2) == "+-") { $changes[$counter] = substr($changes[$counter], 1);
| if(substr($changes[$counter], 0, 2) == "+-") { $changes[$counter] = substr($changes[$counter], 1);
|
Zeile 2507 | Zeile 2570 |
---|
if(count($update_query) > 0) { $db->update_query("forums", $update_query, "fid='".(int)$fid."'");
|
if(count($update_query) > 0) { $db->update_query("forums", $update_query, "fid='".(int)$fid."'");
|
}
| }
|
// Guess we should update the statistics too? $new_stats = array();
| // Guess we should update the statistics too? $new_stats = array();
|
Zeile 2517 | Zeile 2580 |
---|
if($threads_diff > -1) { $new_stats['numthreads'] = "+{$threads_diff}";
|
if($threads_diff > -1) { $new_stats['numthreads'] = "+{$threads_diff}";
|
}
| }
|
else { $new_stats['numthreads'] = "{$threads_diff}";
| else { $new_stats['numthreads'] = "{$threads_diff}";
|
Zeile 2556 | Zeile 2619 |
---|
if($unapprovedposts_diff > -1) { $new_stats['numunapprovedposts'] = "+{$unapprovedposts_diff}";
|
if($unapprovedposts_diff > -1) { $new_stats['numunapprovedposts'] = "+{$unapprovedposts_diff}";
|
} else
| } else
|
{ $new_stats['numunapprovedposts'] = "{$unapprovedposts_diff}"; }
| { $new_stats['numunapprovedposts'] = "{$unapprovedposts_diff}"; }
|
Zeile 2573 | Zeile 2636 |
---|
else { $new_stats['numdeletedposts'] = "{$deletedposts_diff}";
|
else { $new_stats['numdeletedposts'] = "{$deletedposts_diff}";
|
} }
| } }
|
if(array_key_exists('deletedthreads', $update_query)) {
| if(array_key_exists('deletedthreads', $update_query)) {
|
Zeile 2593 | Zeile 2656 |
---|
{ update_stats($new_stats); }
|
{ update_stats($new_stats); }
|
}
| }
|
/** * Update the last post information for a specific forum * * @param int $fid The forum ID */ function update_forum_lastpost($fid)
|
/** * Update the last post information for a specific forum * * @param int $fid The forum ID */ function update_forum_lastpost($fid)
|
{ global $db;
| { global $db;
|
// Fetch the last post for this forum $query = $db->query(" SELECT tid, lastpost, lastposter, lastposteruid, subject
| // Fetch the last post for this forum $query = $db->query(" SELECT tid, lastpost, lastposter, lastposteruid, subject
|
Zeile 2632 | Zeile 2695 |
---|
* @param array $changes Array of items being updated (replies, unapprovedposts, deletedposts, attachmentcount) and their value (ex, 1, +1, -1) */ function update_thread_counters($tid, $changes=array())
|
* @param array $changes Array of items being updated (replies, unapprovedposts, deletedposts, attachmentcount) and their value (ex, 1, +1, -1) */ function update_thread_counters($tid, $changes=array())
|
{ global $db;
$update_query = array(); $tid = (int)$tid;
| { global $db;
$update_query = array(); $tid = (int)$tid;
|
$counters = array('replies', 'unapprovedposts', 'attachmentcount', 'deletedposts', 'attachmentcount');
// Fetch above counters for this thread
| $counters = array('replies', 'unapprovedposts', 'attachmentcount', 'deletedposts', 'attachmentcount');
// Fetch above counters for this thread
|
Zeile 2956 | Zeile 3019 |
---|
function get_extension($file) { return my_strtolower(my_substr(strrchr($file, "."), 1));
|
function get_extension($file) { return my_strtolower(my_substr(strrchr($file, "."), 1));
|
}
/**
| }
/**
|
* Generates a random string. * * @param int $length The length of the string to generate.
| * Generates a random string. * * @param int $length The length of the string to generate.
|
Zeile 2978 | Zeile 3041 |
---|
// At least one big letter $str[] = $set[my_rand(10, 35)];
|
// At least one big letter $str[] = $set[my_rand(10, 35)];
|
|
|
// At least one small letter $str[] = $set[my_rand(36, 61)];
|
// At least one small letter $str[] = $set[my_rand(36, 61)];
|
|
|
$length -= 3; }
for($i = 0; $i < $length; ++$i) { $str[] = $set[my_rand(0, 61)];
|
$length -= 3; }
for($i = 0; $i < $length; ++$i) { $str[] = $set[my_rand(0, 61)];
|
}
| }
|
// Make sure they're in random order and convert them to a string shuffle($str);
|
// Make sure they're in random order and convert them to a string shuffle($str);
|
|
|
return implode($str); }
/** * Formats a username based on their display group
|
return implode($str); }
/** * Formats a username based on their display group
|
*
| *
|
* @param string $username The username * @param int $usergroup The usergroup for the user * @param int $displaygroup The display group for the user * @return string The formatted username */ function format_name($username, $usergroup, $displaygroup=0)
|
* @param string $username The username * @param int $usergroup The usergroup for the user * @param int $displaygroup The display group for the user * @return string The formatted username */ function format_name($username, $usergroup, $displaygroup=0)
|
{ global $groupscache, $cache;
if(!is_array($groupscache)) { $groupscache = $cache->read("usergroups"); }
if($displaygroup != 0)
| { global $groupscache, $cache, $plugins;
static $formattednames = array();
if(!isset($formattednames[$username]))
|
{
|
{
|
$usergroup = $displaygroup; }
$ugroup = $groupscache[$usergroup]; $format = $ugroup['namestyle']; $userin = substr_count($format, "{username}");
| if(!is_array($groupscache)) { $groupscache = $cache->read("usergroups"); }
if($displaygroup != 0) { $usergroup = $displaygroup; }
|
|
|
if($userin == 0) {
| |
$format = "{username}";
|
$format = "{username}";
|
}
| |
|
|
$format = stripslashes($format);
| if(isset($groupscache[$usergroup])) { $ugroup = $groupscache[$usergroup];
if(strpos($ugroup['namestyle'], "{username}") !== false) { $format = $ugroup['namestyle']; } }
$format = stripslashes($format);
$parameters = compact('username', 'usergroup', 'displaygroup', 'format');
$parameters = $plugins->run_hooks('format_name', $parameters);
$format = $parameters['format'];
$formattednames[$username] = str_replace("{username}", $username, $format); }
|
|
|
return str_replace("{username}", $username, $format);
| return $formattednames[$username];
|
}
/**
| }
/**
|
Zeile 3048 | Zeile 3127 |
---|
if(!isset($avatars)) { $avatars = array();
|
if(!isset($avatars)) { $avatars = array();
|
| }
if(my_strpos($avatar, '://') !== false && !$mybb->settings['allowremoteavatars']) { // Remote avatar, but remote avatars are disallowed. $avatar = null;
|
}
if(!$avatar)
| }
if(!$avatar)
|
Zeile 3770 | Zeile 3855 |
---|
{ $pid = (int)$data['pid']; unset($data['pid']);
|
{ $pid = (int)$data['pid']; unset($data['pid']);
|
| }
$tids = array(); if(isset($data['tids'])) { $tids = (array)$data['tids']; unset($data['tids']);
|
}
// Any remaining extra data - we my_serialize and insert in to its own column
| }
// Any remaining extra data - we my_serialize and insert in to its own column
|
Zeile 3788 | Zeile 3880 |
---|
"data" => $db->escape_string($data), "ipaddress" => $db->escape_binary($session->packedip) );
|
"data" => $db->escape_string($data), "ipaddress" => $db->escape_binary($session->packedip) );
|
$db->insert_query("moderatorlog", $sql_array);
| if($tids) { $multiple_sql_array = array();
foreach($tids as $tid) { $sql_array['tid'] = (int)$tid; $multiple_sql_array[] = $sql_array; }
$db->insert_query_multiple("moderatorlog", $multiple_sql_array); } else { $db->insert_query("moderatorlog", $sql_array); }
|
}
/**
| }
/**
|
Zeile 3810 | Zeile 3918 |
---|
elseif($reputation > 0) { $reputation_class = "reputation_positive";
|
elseif($reputation > 0) { $reputation_class = "reputation_positive";
|
} else
| } else
|
{ $reputation_class = "reputation_neutral"; }
|
{ $reputation_class = "reputation_neutral"; }
|
|
|
$reputation = my_number_format($reputation);
if($uid != 0) { eval("\$display_reputation = \"".$templates->get("postbit_reputation_formatted_link")."\";");
|
$reputation = my_number_format($reputation);
if($uid != 0) { eval("\$display_reputation = \"".$templates->get("postbit_reputation_formatted_link")."\";");
|
}
| }
|
else { eval("\$display_reputation = \"".$templates->get("postbit_reputation_formatted")."\";");
| else { eval("\$display_reputation = \"".$templates->get("postbit_reputation_formatted")."\";");
|
Zeile 3850 | Zeile 3958 |
---|
$warning_class = "moderate_warning"; } else if($level >= 25)
|
$warning_class = "moderate_warning"; } else if($level >= 25)
|
{
| {
|
$warning_class = "low_warning"; } else
| $warning_class = "low_warning"; } else
|
Zeile 3868 | Zeile 3976 |
---|
* @return string The IP address. */ function get_ip()
|
* @return string The IP address. */ function get_ip()
|
{
| {
|
global $mybb, $plugins;
|
global $mybb, $plugins;
|
|
|
$ip = strtolower($_SERVER['REMOTE_ADDR']);
|
$ip = strtolower($_SERVER['REMOTE_ADDR']);
|
|
|
if($mybb->settings['ip_forwarded_check']) { $addresses = array();
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
|
if($mybb->settings['ip_forwarded_check']) { $addresses = array();
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
|
{
| {
|
$addresses = explode(',', strtolower($_SERVER['HTTP_X_FORWARDED_FOR']));
|
$addresses = explode(',', strtolower($_SERVER['HTTP_X_FORWARDED_FOR']));
|
}
| }
|
elseif(isset($_SERVER['HTTP_X_REAL_IP']))
|
elseif(isset($_SERVER['HTTP_X_REAL_IP']))
|
{
| {
|
$addresses = explode(',', strtolower($_SERVER['HTTP_X_REAL_IP'])); }
if(is_array($addresses))
|
$addresses = explode(',', strtolower($_SERVER['HTTP_X_REAL_IP'])); }
if(is_array($addresses))
|
{
| {
|
foreach($addresses as $val) { $val = trim($val);
| foreach($addresses as $val) { $val = trim($val);
|
Zeile 3925 | Zeile 4033 |
---|
* @return string The friendly file size */ function get_friendly_size($size)
|
* @return string The friendly file size */ function get_friendly_size($size)
|
{ global $lang;
| { global $lang;
|
if(!is_numeric($size))
|
if(!is_numeric($size))
|
{
| {
|
return $lang->na; }
| return $lang->na; }
|
Zeile 3937 | Zeile 4045 |
---|
if($size >= 1208925819614629174706176) { $size = my_number_format(round(($size / 1208925819614629174706176), 2))." ".$lang->size_yb;
|
if($size >= 1208925819614629174706176) { $size = my_number_format(round(($size / 1208925819614629174706176), 2))." ".$lang->size_yb;
|
}
| }
|
// Zetabyte (1024 Exabytes) elseif($size >= 1180591620717411303424)
|
// Zetabyte (1024 Exabytes) elseif($size >= 1180591620717411303424)
|
{
| {
|
$size = my_number_format(round(($size / 1180591620717411303424), 2))." ".$lang->size_zb; } // Exabyte (1024 Petabytes) elseif($size >= 1152921504606846976) { $size = my_number_format(round(($size / 1152921504606846976), 2))." ".$lang->size_eb;
|
$size = my_number_format(round(($size / 1180591620717411303424), 2))." ".$lang->size_zb; } // Exabyte (1024 Petabytes) elseif($size >= 1152921504606846976) { $size = my_number_format(round(($size / 1152921504606846976), 2))." ".$lang->size_eb;
|
}
| }
|
// Petabyte (1024 Terabytes) elseif($size >= 1125899906842624)
|
// Petabyte (1024 Terabytes) elseif($size >= 1125899906842624)
|
{
| {
|
$size = my_number_format(round(($size / 1125899906842624), 2))." ".$lang->size_pb; } // Terabyte (1024 Gigabytes) elseif($size >= 1099511627776) { $size = my_number_format(round(($size / 1099511627776), 2))." ".$lang->size_tb;
|
$size = my_number_format(round(($size / 1125899906842624), 2))." ".$lang->size_pb; } // Terabyte (1024 Gigabytes) elseif($size >= 1099511627776) { $size = my_number_format(round(($size / 1099511627776), 2))." ".$lang->size_tb;
|
}
| }
|
// Gigabyte (1024 Megabytes) elseif($size >= 1073741824) {
| // Gigabyte (1024 Megabytes) elseif($size >= 1073741824) {
|
Zeile 3976 | Zeile 4084 |
---|
elseif($size == 0) { $size = "0 ".$lang->size_bytes;
|
elseif($size == 0) { $size = "0 ".$lang->size_bytes;
|
}
| }
|
else { $size = my_number_format($size)." ".$lang->size_bytes;
| else { $size = my_number_format($size)." ".$lang->size_bytes;
|
Zeile 3996 | Zeile 4104 |
---|
global $lang;
if(!is_numeric($time))
|
global $lang;
if(!is_numeric($time))
|
{
| {
|
return $lang->na;
|
return $lang->na;
|
}
| }
|
if(round(1000000 * $time, 2) < 1000) { $time = number_format(round(1000000 * $time, 2))." μs"; } elseif(round(1000000 * $time, 2) >= 1000 && round(1000000 * $time, 2) < 1000000)
|
if(round(1000000 * $time, 2) < 1000) { $time = number_format(round(1000000 * $time, 2))." μs"; } elseif(round(1000000 * $time, 2) >= 1000 && round(1000000 * $time, 2) < 1000000)
|
{
| {
|
$time = number_format(round((1000 * $time), 2))." ms"; } else
| $time = number_format(round((1000 * $time), 2))." ms"; } else
|
Zeile 4315 | Zeile 4423 |
---|
elseif(!empty($multipage)) { $navbits[$navsize]['url'] = get_forum_link($forumnav['fid'], $multipage['current_page']);
|
elseif(!empty($multipage)) { $navbits[$navsize]['url'] = get_forum_link($forumnav['fid'], $multipage['current_page']);
|
|
|
$navbits[$navsize]['multipage'] = $multipage; $navbits[$navsize]['multipage']['url'] = str_replace('{fid}', $forumnav['fid'], FORUM_URL_PAGED);
|
$navbits[$navsize]['multipage'] = $multipage; $navbits[$navsize]['multipage']['url'] = str_replace('{fid}', $forumnav['fid'], FORUM_URL_PAGED);
|
}
| }
|
else { $navbits[$navsize]['url'] = get_forum_link($forumnav['fid']); } } }
|
else { $navbits[$navsize]['url'] = get_forum_link($forumnav['fid']); } } }
|
}
| }
|
return 1; }
| return 1; }
|
Zeile 4354 | Zeile 4462 |
---|
* @param string $type The type of page (thread|announcement|forum) * @param int $id The ID of the item * @return string The URL
|
* @param string $type The type of page (thread|announcement|forum) * @param int $id The ID of the item * @return string The URL
|
*/
| */
|
function build_archive_link($type="", $id=0) { global $mybb;
| function build_archive_link($type="", $id=0) { global $mybb;
|
Zeile 4364 | Zeile 4472 |
---|
if($mybb->settings['seourls_archive'] == 1) { $base_url = $mybb->settings['bburl']."/archive/index.php/";
|
if($mybb->settings['seourls_archive'] == 1) { $base_url = $mybb->settings['bburl']."/archive/index.php/";
|
}
| }
|
else { $base_url = $mybb->settings['bburl']."/archive/index.php?";
| else { $base_url = $mybb->settings['bburl']."/archive/index.php?";
|
Zeile 4392 | Zeile 4500 |
---|
* Prints a debug information page */ function debug_page()
|
* Prints a debug information page */ function debug_page()
|
{
| {
|
global $db, $debug, $templates, $templatelist, $mybb, $maintimer, $globaltime, $ptimer, $parsetime, $lang, $cache;
$totaltime = format_time_duration($maintimer->totaltime);
| global $db, $debug, $templates, $templatelist, $mybb, $maintimer, $globaltime, $ptimer, $parsetime, $lang, $cache;
$totaltime = format_time_duration($maintimer->totaltime);
|
Zeile 4664 | Zeile 4772 |
---|
$stamp %= $msecs; $seconds = $stamp;
|
$stamp %= $msecs; $seconds = $stamp;
|
if($years == 1)
| // Prevent gross over accuracy ($options parameter will override these) if($years > 0)
|
{
|
{
|
$nicetime['years'] = "1".$lang_year;
| $options = array_merge(array( 'days' => false, 'hours' => false, 'minutes' => false, 'seconds' => false ), $options);
|
}
|
}
|
else if($years > 1)
| elseif($months > 0)
|
{
|
{
|
$nicetime['years'] = $years.$lang_years;
| $options = array_merge(array( 'hours' => false, 'minutes' => false, 'seconds' => false ), $options);
|
}
|
}
|
if($months == 1) { $nicetime['months'] = "1".$lang_month; } else if($months > 1) { $nicetime['months'] = $months.$lang_months; }
if($weeks == 1) { $nicetime['weeks'] = "1".$lang_week; } else if($weeks > 1) { $nicetime['weeks'] = $weeks.$lang_weeks; }
if($days == 1)
| elseif($weeks > 0)
|
{
|
{
|
$nicetime['days'] = "1".$lang_day; } else if($days > 1) { $nicetime['days'] = $days.$lang_days;
| $options = array_merge(array( 'minutes' => false, 'seconds' => false ), $options); } elseif($days > 0) { $options = array_merge(array( 'seconds' => false ), $options); }
if(!isset($options['years']) || $options['years'] !== false) { if($years == 1) { $nicetime['years'] = "1".$lang_year; } else if($years > 1) { $nicetime['years'] = $years.$lang_years; } }
if(!isset($options['months']) || $options['months'] !== false) { if($months == 1) { $nicetime['months'] = "1".$lang_month; } else if($months > 1) { $nicetime['months'] = $months.$lang_months; } }
if(!isset($options['weeks']) || $options['weeks'] !== false) { if($weeks == 1) { $nicetime['weeks'] = "1".$lang_week; } else if($weeks > 1) { $nicetime['weeks'] = $weeks.$lang_weeks; } }
if(!isset($options['days']) || $options['days'] !== false) { if($days == 1) { $nicetime['days'] = "1".$lang_day; } else if($days > 1) { $nicetime['days'] = $days.$lang_days; }
|
}
if(!isset($options['hours']) || $options['hours'] !== false)
|
}
if(!isset($options['hours']) || $options['hours'] !== false)
|
{
| {
|
if($hours == 1)
|
if($hours == 1)
|
{
| {
|
$nicetime['hours'] = "1".$lang_hour;
|
$nicetime['hours'] = "1".$lang_hour;
|
}
| }
|
else if($hours > 1) { $nicetime['hours'] = $hours.$lang_hours;
|
else if($hours > 1) { $nicetime['hours'] = $hours.$lang_hours;
|
} }
| } }
|
if(!isset($options['minutes']) || $options['minutes'] !== false) {
| if(!isset($options['minutes']) || $options['minutes'] !== false) {
|
Zeile 4719 | Zeile 4871 |
---|
$nicetime['minutes'] = "1".$lang_minute; } else if($minutes > 1)
|
$nicetime['minutes'] = "1".$lang_minute; } else if($minutes > 1)
|
{
| {
|
$nicetime['minutes'] = $minutes.$lang_minutes; } }
| $nicetime['minutes'] = $minutes.$lang_minutes; } }
|
Zeile 4737 | Zeile 4889 |
---|
}
if(is_array($nicetime))
|
}
if(is_array($nicetime))
|
{
| {
|
return implode(", ", $nicetime); } }
| return implode(", ", $nicetime); } }
|
Zeile 4755 | Zeile 4907 |
---|
if($alttrow == "trow1" && !$reset) { $trow = "trow2";
|
if($alttrow == "trow1" && !$reset) { $trow = "trow2";
|
}
| }
|
else { $trow = "trow1";
| else { $trow = "trow1";
|
Zeile 4987 | Zeile 5139 |
---|
function build_theme_select($name, $selected=-1, $tid=0, $depth="", $usergroup_override=false, $footer=false, $count_override=false) { global $db, $themeselect, $tcache, $lang, $mybb, $limit, $templates, $num_themes, $themeselect_option;
|
function build_theme_select($name, $selected=-1, $tid=0, $depth="", $usergroup_override=false, $footer=false, $count_override=false) { global $db, $themeselect, $tcache, $lang, $mybb, $limit, $templates, $num_themes, $themeselect_option;
|
|
|
if($tid == 0)
|
if($tid == 0)
|
{
| {
|
$tid = 1; $num_themes = 0; $themeselect_option = '';
|
$tid = 1; $num_themes = 0; $themeselect_option = '';
|
|
|
if(!isset($lang->use_default)) { $lang->use_default = $lang->lang_select_default;
|
if(!isset($lang->use_default)) { $lang->use_default = $lang->lang_select_default;
|
} }
if(!is_array($tcache)) { $query = $db->simple_select('themes', 'tid, name, pid, allowedgroups', "pid!='0'");
| } }
if(!is_array($tcache)) { $query = $db->simple_select('themes', 'tid, name, pid, allowedgroups', "pid!='0'");
|
while($theme = $db->fetch_array($query)) {
| while($theme = $db->fetch_array($query)) {
|
Zeile 5102 | Zeile 5254 |
---|
* @return string The string with htmlspecialchars applied */ function htmlspecialchars_uni($message)
|
* @return string The string with htmlspecialchars applied */ function htmlspecialchars_uni($message)
|
{
| {
|
$message = preg_replace("#&(?!\#[0-9]+;)#si", "&", $message); // Fix & but allow unicode $message = str_replace("<", "<", $message); $message = str_replace(">", ">", $message);
| $message = preg_replace("#&(?!\#[0-9]+;)#si", "&", $message); // Fix & but allow unicode $message = str_replace("<", "<", $message); $message = str_replace(">", ">", $message);
|
Zeile 5128 | Zeile 5280 |
---|
if(is_int($number)) { return number_format($number, 0, $mybb->settings['decpoint'], $mybb->settings['thousandssep']);
|
if(is_int($number)) { return number_format($number, 0, $mybb->settings['decpoint'], $mybb->settings['thousandssep']);
|
} else {
| } else {
|
$parts = explode('.', $number);
|
$parts = explode('.', $number);
|
|
|
if(isset($parts[1]))
|
if(isset($parts[1]))
|
{
| {
|
$decimals = my_strlen($parts[1]);
|
$decimals = my_strlen($parts[1]);
|
}
| }
|
else { $decimals = 0; }
return number_format((double)$number, $decimals, $mybb->settings['decpoint'], $mybb->settings['thousandssep']);
|
else { $decimals = 0; }
return number_format((double)$number, $decimals, $mybb->settings['decpoint'], $mybb->settings['thousandssep']);
|
} }
| } }
|
/** * Converts a string of text to or from UTF-8.
| /** * Converts a string of text to or from UTF-8.
|
Zeile 5171 | Zeile 5323 |
---|
}
if(!isset($use_iconv))
|
}
if(!isset($use_iconv))
|
{ $use_iconv = function_exists("iconv"); }
if(!isset($use_mb))
| { $use_iconv = function_exists("iconv"); }
if(!isset($use_mb))
|
{ $use_mb = function_exists("mb_convert_encoding"); }
| { $use_mb = function_exists("mb_convert_encoding"); }
|
Zeile 5186 | Zeile 5338 |
---|
{ $from_charset = $lang->settings['charset']; $to_charset = "UTF-8";
|
{ $from_charset = $lang->settings['charset']; $to_charset = "UTF-8";
|
} else
| } else
|
{ $from_charset = "UTF-8"; $to_charset = $lang->settings['charset'];
| { $from_charset = "UTF-8"; $to_charset = $lang->settings['charset'];
|
Zeile 5195 | Zeile 5347 |
---|
if($use_iconv) { return iconv($from_charset, $to_charset."//IGNORE", $str);
|
if($use_iconv) { return iconv($from_charset, $to_charset."//IGNORE", $str);
|
}
| }
|
else { return @mb_convert_encoding($str, $to_charset, $from_charset);
|
else { return @mb_convert_encoding($str, $to_charset, $from_charset);
|
} }
| } }
|
elseif($charset == "iso-8859-1" && function_exists("utf8_encode"))
|
elseif($charset == "iso-8859-1" && function_exists("utf8_encode"))
|
{
| {
|
if($to)
|
if($to)
|
{
| {
|
return utf8_encode($str);
|
return utf8_encode($str);
|
}
| }
|
else { return utf8_decode($str); }
|
else { return utf8_decode($str); }
|
}
| }
|
else { return $str;
|
else { return $str;
|
} }
/**
| } }
/**
|
* DEPRECATED! Please use other alternatives.
|
* DEPRECATED! Please use other alternatives.
|
*
| *
|
* @deprecated * @param string $message *
| * @deprecated * @param string $message *
|
Zeile 5229 | Zeile 5381 |
---|
function my_wordwrap($message) { return $message;
|
function my_wordwrap($message) { return $message;
|
}
/** * Workaround for date limitation in PHP to establish the day of a birthday (Provided by meme) *
| }
/** * Workaround for date limitation in PHP to establish the day of a birthday (Provided by meme) *
|
* @param int $month The month of the birthday * @param int $day The day of the birthday * @param int $year The year of the bithday
| * @param int $month The month of the birthday * @param int $day The day of the birthday * @param int $year The year of the bithday
|
Zeile 5276 | Zeile 5428 |
---|
* @return array The number of days in each month of that year */ function get_bdays($in)
|
* @return array The number of days in each month of that year */ function get_bdays($in)
|
{
| {
|
return array( 31,
|
return array( 31,
|
($in % 4 == 0 && ($in % 100 > 0 || $in % 400 == 0) ? 29 : 28), 31, 30, 31, 30, 31, 31,
| ($in % 4 == 0 && ($in % 100 > 0 || $in % 400 == 0) ? 29 : 28), 31, 30, 31, 30, 31, 31,
|
30, 31, 30, 31
|
30, 31, 30, 31
|
);
| );
|
}
/**
| }
/**
|
Zeile 5333 | Zeile 5485 |
---|
$lang->month_11, $lang->month_12 );
|
$lang->month_11, $lang->month_12 );
|
| |
// This needs to be in this specific order $find = array(
| // This needs to be in this specific order $find = array(
|
Zeile 5658 | Zeile 5809 |
---|
function unhtmlentities($string) { // Replace numeric entities
|
function unhtmlentities($string) { // Replace numeric entities
|
$string = preg_replace_callback('~&#x([0-9a-f]+);~i', create_function('$matches', 'return unichr(hexdec($matches[1]));'), $string); $string = preg_replace_callback('~&#([0-9]+);~', create_function('$matches', 'return unichr($matches[1]);'), $string);
| $string = preg_replace_callback('~&#x([0-9a-f]+);~i', 'unichr_callback1', $string); $string = preg_replace_callback('~&#([0-9]+);~', 'unichr_callback2', $string);
|
// Replace literal entities $trans_tbl = get_html_translation_table(HTML_ENTITIES);
| // Replace literal entities $trans_tbl = get_html_translation_table(HTML_ENTITIES);
|
Zeile 5699 | Zeile 5850 |
---|
{ return false; }
|
{ return false; }
|
| }
/** * Returns any ascii to it's character (utf-8 safe). * * @param array $matches Matches. * @return string|bool The characterized ascii. False on failure */ function unichr_callback1($matches) { return unichr(hexdec($matches[1])); }
/** * Returns any ascii to it's character (utf-8 safe). * * @param array $matches Matches. * @return string|bool The characterized ascii. False on failure */ function unichr_callback2($matches) { return unichr($matches[1]);
|
}
/**
| }
/**
|
Zeile 5772 | Zeile 5945 |
---|
if(!$username && $uid == 0) { // Return Guest phrase for no UID, no guest nickname
|
if(!$username && $uid == 0) { // Return Guest phrase for no UID, no guest nickname
|
return $lang->guest;
| return htmlspecialchars_uni($lang->guest);
|
} elseif($uid == 0) {
| } elseif($uid == 0) {
|
Zeile 5927 | Zeile 6100 |
---|
{ $link = str_replace("{calendar}", $calendar, CALENDAR_URL); return htmlspecialchars_uni($link);
|
{ $link = str_replace("{calendar}", $calendar, CALENDAR_URL); return htmlspecialchars_uni($link);
|
}
| }
|
}
/**
| }
/**
|
Zeile 6077 | Zeile 6250 |
---|
}
return $forum_cache[$fid];
|
}
return $forum_cache[$fid];
|
}
| }
|
/** * Get the thread of a thread id.
| /** * Get the thread of a thread id.
|
Zeile 6087 | Zeile 6260 |
---|
* @return array|bool The database row of the thread. False on failure */ function get_thread($tid, $recache = false)
|
* @return array|bool The database row of the thread. False on failure */ function get_thread($tid, $recache = false)
|
{
| {
|
global $db; static $thread_cache;
|
global $db; static $thread_cache;
|
|
|
$tid = (int)$tid;
if(isset($thread_cache[$tid]) && !$recache) { return $thread_cache[$tid];
|
$tid = (int)$tid;
if(isset($thread_cache[$tid]) && !$recache) { return $thread_cache[$tid];
|
}
| }
|
else { $query = $db->simple_select("threads", "*", "tid = '{$tid}'");
| else { $query = $db->simple_select("threads", "*", "tid = '{$tid}'");
|
Zeile 6106 | Zeile 6279 |
---|
{ $thread_cache[$tid] = $thread; return $thread;
|
{ $thread_cache[$tid] = $thread; return $thread;
|
}
| }
|
else { $thread_cache[$tid] = false;
|
else { $thread_cache[$tid] = false;
|
return false; } } }
/**
| return false; } } }
/**
|
* Get the post of a post id. * * @param int $pid The post id of the post.
| * Get the post of a post id. * * @param int $pid The post id of the post.
|
Zeile 6152 | Zeile 6325 |
---|
/** * Get inactivate forums.
|
/** * Get inactivate forums.
|
*
| *
|
* @return string The comma separated values of the inactivate forum. */ function get_inactive_forums()
| * @return string The comma separated values of the inactivate forum. */ function get_inactive_forums()
|
Zeile 6162 | Zeile 6335 |
---|
if(!$forum_cache) { cache_forums();
|
if(!$forum_cache) { cache_forums();
|
}
| }
|
$inactive = array();
| $inactive = array();
|
Zeile 6177 | Zeile 6350 |
---|
{ $inactive[] = $fid1; }
|
{ $inactive[] = $fid1; }
|
} } }
$inactiveforums = implode(",", $inactive);
| } } }
$inactiveforums = implode(",", $inactive);
|
return $inactiveforums; }
| return $inactiveforums; }
|
Zeile 6192 | Zeile 6365 |
---|
* @param bool $fatal (Optional) Stop execution if it finds an error with the login. Default is True * @return bool|int Number of logins when success, false if failed. */
|
* @param bool $fatal (Optional) Stop execution if it finds an error with the login. Default is True * @return bool|int Number of logins when success, false if failed. */
|
function login_attempt_check($fatal = true)
| function login_attempt_check($uid = 0, $fatal = true)
|
{
|
{
|
global $mybb, $lang, $session, $db;
if($mybb->settings['failedlogincount'] == 0) { return 1; } // Note: Number of logins is defaulted to 1, because using 0 seems to clear cookie data. Not really a problem as long as we account for 1 being default.
// Use cookie if possible, otherwise use session // Find better solution to prevent clearing cookies $loginattempts = 0; $failedlogin = 0;
if(!empty($mybb->cookies['loginattempts'])) { $loginattempts = $mybb->cookies['loginattempts']; }
| global $mybb, $lang, $db;
|
|
|
if(!empty($mybb->cookies['failedlogin'])) { $failedlogin = $mybb->cookies['failedlogin'];
| $attempts = array(); $uid = (int)$uid; $now = TIME_NOW;
// Get this user's login attempts and eventual lockout, if a uid is provided if($uid > 0) { $query = $db->simple_select("users", "loginattempts, loginlockoutexpiry", "uid='{$uid}'", 1); $attempts = $db->fetch_array($query);
if($attempts['loginattempts'] <= 0) { return 0; } } // This user has a cookie lockout, show waiting time elseif($mybb->cookies['lockoutexpiry'] && $mybb->cookies['lockoutexpiry'] > $now) { if($fatal) { $secsleft = (int)($mybb->cookies['lockoutexpiry'] - $now); $hoursleft = floor($secsleft / 3600); $minsleft = floor(($secsleft / 60) % 60); $secsleft = floor($secsleft % 60);
error($lang->sprintf($lang->failed_login_wait, $hoursleft, $minsleft, $secsleft)); }
return false;
|
}
|
}
|
// Work out if the user has had more than the allowed number of login attempts if($loginattempts > $mybb->settings['failedlogincount'])
| if($mybb->settings['failedlogincount'] > 0 && $attempts['loginattempts'] >= $mybb->settings['failedlogincount'])
|
{
|
{
|
// If so, then we need to work out if they can try to login again // Some maths to work out how long they have left and display it to them $now = TIME_NOW;
| // Set the expiry dateline if not set yet if($attempts['loginlockoutexpiry'] == 0) { $attempts['loginlockoutexpiry'] = $now + ((int)$mybb->settings['failedlogintime'] * 60);
// Add a cookie lockout. This is used to prevent access to the login page immediately. // A deep lockout is issued if he tries to login into a locked out account my_setcookie('lockoutexpiry', $attempts['loginlockoutexpiry']);
$db->update_query("users", array( "loginlockoutexpiry" => $attempts['loginlockoutexpiry'] ), "uid='{$uid}'"); }
|
|
|
if(empty($mybb->cookies['failedlogin']))
| if(empty($mybb->cookies['lockoutexpiry']))
|
{
|
{
|
$failedtime = $now;
| $failedtime = $attempts['loginlockoutexpiry'];
|
} else {
|
} else {
|
$failedtime = $mybb->cookies['failedlogin'];
| $failedtime = $mybb->cookies['lockoutexpiry'];
|
}
|
}
|
$secondsleft = $mybb->settings['failedlogintime'] * 60 + $failedtime - $now; $hoursleft = floor($secondsleft / 3600); $minsleft = floor(($secondsleft / 60) % 60); $secsleft = floor($secondsleft % 60);
// This value will be empty the first time the user doesn't login in, set it if(empty($failedlogin)) { my_setcookie('failedlogin', $now);
| // Are we still locked out? if($attempts['loginlockoutexpiry'] > $now) {
|
if($fatal) {
|
if($fatal) {
|
| $secsleft = (int)($attempts['loginlockoutexpiry'] - $now); $hoursleft = floor($secsleft / 3600); $minsleft = floor(($secsleft / 60) % 60); $secsleft = floor($secsleft % 60);
|
error($lang->sprintf($lang->failed_login_wait, $hoursleft, $minsleft, $secsleft));
|
error($lang->sprintf($lang->failed_login_wait, $hoursleft, $minsleft, $secsleft));
|
}
| }
|
return false;
|
return false;
|
}
// Work out if the user has waited long enough before letting them login again if($mybb->cookies['failedlogin'] < ($now - $mybb->settings['failedlogintime'] * 60)) { my_setcookie('loginattempts', 1); my_unsetcookie('failedlogin'); if($mybb->user['uid'] != 0)
| } // Unlock if enough time has passed else {
if($uid > 0)
|
{
|
{
|
$update_array = array( 'loginattempts' => 1 ); $db->update_query("users", $update_array, "uid = '{$mybb->user['uid']}'");
| $db->update_query("users", array( "loginattempts" => 0, "loginlockoutexpiry" => 0 ), "uid='{$uid}'");
|
}
|
}
|
return 1; } // Not waited long enough else if($mybb->cookies['failedlogin'] > ($now - $mybb->settings['failedlogintime'] * 60)) { if($fatal) { error($lang->sprintf($lang->failed_login_wait, $hoursleft, $minsleft, $secsleft)); }
return false;
| // Wipe the cookie, no matter if a guest or a member my_unsetcookie('lockoutexpiry');
return 0;
|
} }
|
} }
|
|
|
// User can attempt another login
|
// User can attempt another login
|
return $loginattempts;
| return $attempts['loginattempts'];
|
}
/** * Validates the format of an email address.
|
}
/** * Validates the format of an email address.
|
*
| *
|
* @param string $email The string to check. * @return boolean True when valid, false when invalid. */ function validate_email_format($email)
|
* @param string $email The string to check. * @return boolean True when valid, false when invalid. */ function validate_email_format($email)
|
{ if(strpos($email, ' ') !== false) { return false; } // Valid local characters for email addresses: http://www.remote.org/jochen/mail/info/chars.html return preg_match("/^[a-zA-Z0-9&*+\-_.{}~^\?=\/]+@[a-zA-Z0-9-]+\.([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]{2,}$/si", $email); }
| { return filter_var($email, FILTER_VALIDATE_EMAIL) !== false; }
|
/** * Checks to see if the email is already in use by another *
| /** * Checks to see if the email is already in use by another *
|
Zeile 6317 | Zeile 6494 |
---|
if($db->fetch_field($query, "emails") > 0) { return true;
|
if($db->fetch_field($query, "emails") > 0) { return true;
|
}
| }
|
return false; }
| return false; }
|
Zeile 6330 | Zeile 6507 |
---|
{ global $db, $mybb;
|
{ global $db, $mybb;
|
if(!file_exists(MYBB_ROOT."inc/settings.php")) { $mode = "x"; } else { $mode = "w"; }
$options = array( "order_by" => "title", "order_dir" => "ASC" ); $query = $db->simple_select("settings", "value, name", "", $options);
| $query = $db->simple_select("settings", "value, name", "", array( 'order_by' => 'title', 'order_dir' => 'ASC', ));
|
|
|
$settings = null;
| $settings = '';
|
while($setting = $db->fetch_array($query)) { $mybb->settings[$setting['name']] = $setting['value'];
| while($setting = $db->fetch_array($query)) { $mybb->settings[$setting['name']] = $setting['value'];
|
Zeile 6354 | Zeile 6521 |
---|
}
$settings = "<"."?php\n/*********************************\ \n DO NOT EDIT THIS FILE, PLEASE USE\n THE SETTINGS EDITOR\n\*********************************/\n\n$settings\n";
|
}
$settings = "<"."?php\n/*********************************\ \n DO NOT EDIT THIS FILE, PLEASE USE\n THE SETTINGS EDITOR\n\*********************************/\n\n$settings\n";
|
$file = @fopen(MYBB_ROOT."inc/settings.php", $mode); @fwrite($file, $settings); @fclose($file);
| file_put_contents(MYBB_ROOT.'inc/settings.php', $settings, LOCK_EX);
|
$GLOBALS['settings'] = &$mybb->settings; }
| $GLOBALS['settings'] = &$mybb->settings; }
|
Zeile 6451 | Zeile 6617 |
---|
// Sort the word array by length. Largest terms go first and work their way down to the smallest term. // This resolves problems like "test tes" where "tes" will be highlighted first, then "test" can't be highlighted because of the changed html
|
// Sort the word array by length. Largest terms go first and work their way down to the smallest term. // This resolves problems like "test tes" where "tes" will be highlighted first, then "test" can't be highlighted because of the changed html
|
usort($words, create_function('$a,$b', 'return strlen($b) - strlen($a);'));
| usort($words, 'build_highlight_array_sort');
|
// Loop through our words to build the PREG compatible strings foreach($words as $word)
| // Loop through our words to build the PREG compatible strings foreach($words as $word)
|
Zeile 6473 | Zeile 6639 |
---|
}
return $highlight_cache;
|
}
return $highlight_cache;
|
| }
/** * Sort the word array by length. Largest terms go first and work their way down to the smallest term. * * @param string $a First word. * @param string $b Second word. * @return integer Result of comparison function. */ function build_highlight_array_sort($a, $b) { return strlen($b) - strlen($a);
|
}
/**
| }
/**
|
Zeile 6590 | Zeile 6768 |
---|
}
// Still here - good email
|
}
// Still here - good email
|
return false; }
/**
| return false; }
/**
|
* Checks if a specific IP address has been banned. * * @param string $ip_address The IP address.
| * Checks if a specific IP address has been banned. * * @param string $ip_address The IP address.
|
Zeile 6710 | Zeile 6888 |
---|
* @return string */ function build_timezone_select($name, $selected=0, $short=false)
|
* @return string */ function build_timezone_select($name, $selected=0, $short=false)
|
{
| {
|
global $mybb, $lang, $templates;
$timezones = get_supported_timezones();
| global $mybb, $lang, $templates;
$timezones = get_supported_timezones();
|
Zeile 6732 | Zeile 6910 |
---|
if($timezone > 0) { $label = "+{$label}";
|
if($timezone > 0) { $label = "+{$label}";
|
}
| }
|
if(strpos($timezone, ".") !== false) { $label = str_replace(".", ":", $label);
| if(strpos($timezone, ".") !== false) { $label = str_replace(".", ":", $label);
|
Zeile 6766 | Zeile 6944 |
---|
function fetch_remote_file($url, $post_data=array(), $max_redirects=20) { global $mybb, $config;
|
function fetch_remote_file($url, $post_data=array(), $max_redirects=20) { global $mybb, $config;
|
| if(!my_validate_url($url, true)) { return false; }
|
$url_components = @parse_url($url);
|
$url_components = @parse_url($url);
|
| if(!isset($url_components['scheme'])) { $url_components['scheme'] = 'https'; } if(!isset($url_components['port'])) { $url_components['port'] = $url_components['scheme'] == 'https' ? 443 : 80; }
|
if( !$url_components || empty($url_components['host']) || (!empty($url_components['scheme']) && !in_array($url_components['scheme'], array('http', 'https'))) ||
|
if( !$url_components || empty($url_components['host']) || (!empty($url_components['scheme']) && !in_array($url_components['scheme'], array('http', 'https'))) ||
|
(!empty($url_components['port']) && !in_array($url_components['port'], array(80, 8080, 443))) ||
| (!in_array($url_components['port'], array(80, 8080, 443))) ||
|
(!empty($config['disallowed_remote_hosts']) && in_array($url_components['host'], $config['disallowed_remote_hosts'])) ) { return false; }
|
(!empty($config['disallowed_remote_hosts']) && in_array($url_components['host'], $config['disallowed_remote_hosts'])) ) { return false; }
|
| $addresses = get_ip_by_hostname($url_components['host']); $destination_address = $addresses[0];
|
if(!empty($config['disallowed_remote_addresses'])) {
|
if(!empty($config['disallowed_remote_addresses'])) {
|
$addresses = gethostbynamel($url_components['host']); if($addresses)
| foreach($config['disallowed_remote_addresses'] as $disallowed_address)
|
{
|
{
|
foreach($config['disallowed_remote_addresses'] as $disallowed_address)
| $ip_range = fetch_ip_range($disallowed_address);
$packed_address = my_inet_pton($destination_address);
if(is_array($ip_range))
|
{
|
{
|
$ip_range = fetch_ip_range($disallowed_address); foreach($addresses as $address)
| if(strcmp($ip_range[0], $packed_address) <= 0 && strcmp($ip_range[1], $packed_address) >= 0)
|
{
|
{
|
$packed_address = my_inet_pton($address);
if(is_array($ip_range)) { if(strcmp($ip_range[0], $packed_address) <= 0 && strcmp($ip_range[1], $packed_address) >= 0) { return false; } } elseif($address == $disallowed_address) { return false; }
| return false;
|
}
|
}
|
| } elseif($destination_address == $disallowed_address) { return false;
|
} } }
| } } }
|
Zeile 6814 | Zeile 7003 |
---|
foreach($post_data as $key => $val) { $post_body .= '&'.urlencode($key).'='.urlencode($val);
|
foreach($post_data as $key => $val) { $post_body .= '&'.urlencode($key).'='.urlencode($val);
|
}
| }
|
$post_body = ltrim($post_body, '&'); }
if(function_exists("curl_init")) {
|
$post_body = ltrim($post_body, '&'); }
if(function_exists("curl_init")) {
|
$can_followlocation = @ini_get('open_basedir') === '' && !$mybb->safemode;
$request_header = $max_redirects != 0 && !$can_followlocation;
| $fetch_header = $max_redirects > 0;
|
$ch = curl_init();
|
$ch = curl_init();
|
curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, $request_header); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
if($max_redirects != 0 && $can_followlocation) { curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_MAXREDIRS, $max_redirects); }
| $curlopt = array( CURLOPT_URL => $url, CURLOPT_HEADER => $fetch_header, CURLOPT_TIMEOUT => 10, CURLOPT_RETURNTRANSFER => 1, CURLOPT_FOLLOWLOCATION => 0, );
if($ca_bundle_path = get_ca_bundle_path()) { $curlopt[CURLOPT_SSL_VERIFYPEER] = 1; $curlopt[CURLOPT_CAINFO] = $ca_bundle_path; } else { $curlopt[CURLOPT_SSL_VERIFYPEER] = 0; }
$curl_version_info = curl_version(); $curl_version = $curl_version_info['version'];
if(version_compare(PHP_VERSION, '7.0.7', '>=') && version_compare($curl_version, '7.49', '>=')) { // CURLOPT_CONNECT_TO $curlopt[10243] = array( $url_components['host'].':'.$url_components['port'].':'.$destination_address ); } elseif(version_compare(PHP_VERSION, '5.5', '>=') && version_compare($curl_version, '7.21.3', '>=')) { // CURLOPT_RESOLVE $curlopt[10203] = array( $url_components['host'].':'.$url_components['port'].':'.$destination_address ); }
|
if(!empty($post_body)) {
|
if(!empty($post_body)) {
|
curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_body);
| $curlopt[CURLOPT_POST] = 1; $curlopt[CURLOPT_POSTFIELDS] = $post_body;
|
}
|
}
|
| curl_setopt_array($ch, $curlopt);
|
$response = curl_exec($ch);
|
$response = curl_exec($ch);
|
if($request_header)
| if($fetch_header)
|
{ $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE); $header = substr($response, 0, $header_size);
| { $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE); $header = substr($response, 0, $header_size);
|
Zeile 6875 | Zeile 7089 |
---|
} else if(function_exists("fsockopen")) {
|
} else if(function_exists("fsockopen")) {
|
if(!isset($url_components['port'])) { $url_components['port'] = 80; }
| |
if(!isset($url_components['path'])) { $url_components['path'] = "/";
| if(!isset($url_components['path'])) { $url_components['path'] = "/";
|
Zeile 6894 | Zeile 7104 |
---|
{ $scheme = 'ssl://'; if($url_components['port'] == 80)
|
{ $scheme = 'ssl://'; if($url_components['port'] == 80)
|
{
| {
|
$url_components['port'] = 443; } }
|
$url_components['port'] = 443; } }
|
$fp = @fsockopen($scheme.$url_components['host'], $url_components['port'], $error_no, $error, 10);
| if(function_exists('stream_context_create')) { if($url_components['scheme'] == 'https' && $ca_bundle_path = get_ca_bundle_path()) { $context = stream_context_create(array( 'ssl' => array( 'verify_peer' => true, 'verify_peer_name' => true, 'peer_name' => $url_components['host'], 'cafile' => $ca_bundle_path, ), )); } else { $context = stream_context_create(array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, ), )); }
$fp = @stream_socket_client($scheme.$destination_address.':'.(int)$url_components['port'], $error_no, $error, 10, STREAM_CLIENT_CONNECT, $context); } else { $fp = @fsockopen($scheme.$url_components['host'], (int)$url_components['port'], $error_no, $error, 10); }
|
@stream_set_timeout($fp, 10); if(!$fp) {
| @stream_set_timeout($fp, 10); if(!$fp) {
|
Zeile 6911 | Zeile 7150 |
---|
$headers[] = "POST {$url_components['path']} HTTP/1.0"; $headers[] = "Content-Length: ".strlen($post_body); $headers[] = "Content-Type: application/x-www-form-urlencoded";
|
$headers[] = "POST {$url_components['path']} HTTP/1.0"; $headers[] = "Content-Length: ".strlen($post_body); $headers[] = "Content-Type: application/x-www-form-urlencoded";
|
} else {
| } else {
|
$headers[] = "GET {$url_components['path']} HTTP/1.0"; }
| $headers[] = "GET {$url_components['path']} HTTP/1.0"; }
|
Zeile 6933 | Zeile 7172 |
---|
$headers = implode("\r\n", $headers); if(!@fwrite($fp, $headers))
|
$headers = implode("\r\n", $headers); if(!@fwrite($fp, $headers))
|
{ return false; }
| { return false; }
|
$data = null;
while(!feof($fp))
|
$data = null;
while(!feof($fp))
|
{ $data .= fgets($fp, 12800); }
| { $data .= fgets($fp, 12800); }
|
fclose($fp);
|
fclose($fp);
|
|
|
$data = explode("\r\n\r\n", $data, 2);
$header = $data[0]; $status_line = current(explode("\n\n", $header, 1)); $body = $data[1];
|
$data = explode("\r\n\r\n", $data, 2);
$header = $data[0]; $status_line = current(explode("\n\n", $header, 1)); $body = $data[1];
|
if($max_redirects != 0 && (strstr($status_line, ' 301 ') || strstr($status_line, ' 302 ')))
| if($max_redirects > 0 && (strstr($status_line, ' 301 ') || strstr($status_line, ' 302 ')))
|
{ preg_match('/Location:(.*?)(?:\n|$)/', $header, $matches);
| { preg_match('/Location:(.*?)(?:\n|$)/', $header, $matches);
|
Zeile 6967 | Zeile 7206 |
---|
return $data; }
|
return $data; }
|
else if(empty($post_data))
| else { return false; } }
/** * Resolves a hostname into a set of IP addresses. * * @param string $hostname The hostname to be resolved * @return array|bool The resulting IP addresses. False on failure */ function get_ip_by_hostname($hostname) { $addresses = @gethostbynamel($hostname);
if(!$addresses) { $result_set = @dns_get_record($hostname, DNS_A | DNS_AAAA);
if($result_set) { $addresses = array_column($result_set, 'ip'); } else { return false; } }
return $addresses; }
/** * Returns the location of the CA bundle defined in the PHP configuration. * * @return string|bool The location of the CA bundle, false if not set */ function get_ca_bundle_path() { if($path = ini_get('openssl.cafile')) { return $path; } if($path = ini_get('curl.cainfo'))
|
{
|
{
|
return @implode("", @file($url)); } else { return false;
| return $path;
|
}
|
}
|
| return false;
|
}
/**
| }
/**
|
Zeile 7599 | Zeile 7880 |
---|
static $time_start;
$time = microtime(true);
|
static $time_start;
$time = microtime(true);
|
| |
// Just starting timer, init and return if(!$time_start)
| // Just starting timer, init and return if(!$time_start)
|
Zeile 7629 | Zeile 7909 |
---|
global $mybb, $checksums, $bad_verify_files;
// We don't need to check these types of files
|
global $mybb, $checksums, $bad_verify_files;
// We don't need to check these types of files
|
$ignore = array(".", "..", ".svn", "config.php", "settings.php", "Thumb.db", "config.default.php", "lock", "htaccess.txt", "logo.gif", "logo.png");
| $ignore = array(".", "..", ".svn", "config.php", "settings.php", "Thumb.db", "config.default.php", "lock", "htaccess.txt", "htaccess-nginx.txt", "logo.gif", "logo.png");
|
$ignore_ext = array("attach");
if(substr($path, -1, 1) == "/")
| $ignore_ext = array("attach");
if(substr($path, -1, 1) == "/")
|
Zeile 7640 | Zeile 7920 |
---|
if(!is_array($bad_verify_files)) { $bad_verify_files = array();
|
if(!is_array($bad_verify_files)) { $bad_verify_files = array();
|
}
| }
|
// Make sure that we're in a directory and it's not a symbolic link if(@is_dir($path) && !@is_link($path))
| // Make sure that we're in a directory and it's not a symbolic link if(@is_dir($path) && !@is_link($path))
|
Zeile 7651 | Zeile 7931 |
---|
while(($file = @readdir($dh)) !== false) { if(in_array($file, $ignore) || in_array(get_extension($file), $ignore_ext))
|
while(($file = @readdir($dh)) !== false) { if(in_array($file, $ignore) || in_array(get_extension($file), $ignore_ext))
|
{ continue; }
| { continue; }
|
// Recurse through the directory tree if(is_dir($path."/".$file))
| // Recurse through the directory tree if(is_dir($path."/".$file))
|
Zeile 7670 | Zeile 7950 |
---|
{ $filename = $path."/".$file; $handle = fopen($filename, "rb");
|
{ $filename = $path."/".$file; $handle = fopen($filename, "rb");
|
$contents = '';
| $hashingContext = hash_init('sha512');
|
while(!feof($handle)) {
|
while(!feof($handle)) {
|
$contents .= fread($handle, 8192);
| hash_update($hashingContext, fread($handle, 8192));
|
} fclose($handle);
|
} fclose($handle);
|
$md5 = md5($contents);
| $checksum = hash_final($hashingContext);
|
// Does it match any of our hashes (unix/windows new lines taken into consideration with the hashes)
|
// Does it match any of our hashes (unix/windows new lines taken into consideration with the hashes)
|
if(!in_array($md5, $checksums[$file_path]))
| if(!in_array($checksum, $checksums[$file_path]))
|
{ $bad_verify_files[] = array("status" => "changed", "path" => $file_path); }
| { $bad_verify_files[] = array("status" => "changed", "path" => $file_path); }
|
Zeile 7710 | Zeile 7990 |
---|
if($count == 0) { return $bad_verify_files;
|
if($count == 0) { return $bad_verify_files;
|
} }
/**
| } }
/**
|
* Returns a signed value equal to an integer * * @param int $int The integer
| * Returns a signed value equal to an integer * * @param int $int The integer
|
Zeile 7746 | Zeile 8026 |
---|
{ $output = random_bytes($bytes); } catch (Exception $e) {
|
{ $output = random_bytes($bytes); } catch (Exception $e) {
|
} }
if(strlen($output) < $bytes) {
| } }
if(strlen($output) < $bytes) {
|
if(@is_readable('/dev/urandom') && ($handle = @fopen('/dev/urandom', 'rb'))) { $output = @fread($handle, $bytes); @fclose($handle);
|
if(@is_readable('/dev/urandom') && ($handle = @fopen('/dev/urandom', 'rb'))) { $output = @fread($handle, $bytes); @fclose($handle);
|
} } else { return $output; }
if(strlen($output) < $bytes)
| } } else { return $output; }
if(strlen($output) < $bytes)
|
{ if(function_exists('mcrypt_create_iv')) {
| { if(function_exists('mcrypt_create_iv')) {
|
Zeile 7794 | Zeile 8074 |
---|
if ($crypto_strong == false) { $output = null;
|
if ($crypto_strong == false) { $output = null;
|
} } } } else { return $output; }
| } } } } else { return $output; }
|
if(strlen($output) < $bytes) {
| if(strlen($output) < $bytes) {
|
Zeile 7815 | Zeile 8095 |
---|
$output = $CAPI_Util->GetRandom($bytes, 0); } } catch (Exception $e) {
|
$output = $CAPI_Util->GetRandom($bytes, 0); } } catch (Exception $e) {
|
} } } else { return $output; }
| } } } else { return $output; }
|
if(strlen($output) < $bytes) { // Close to what PHP basically uses internally to seed, but not quite.
| if(strlen($output) < $bytes) { // Close to what PHP basically uses internally to seed, but not quite.
|
Zeile 8148 | Zeile 8428 |
---|
{ $string .= '?'; break;
|
{ $string .= '?'; break;
|
}
| }
|
else { return false;
| else { return false;
|
Zeile 8228 | Zeile 8508 |
---|
global $lang, $mybb, $db, $session;
if($mybb->settings['enablepms'] == 0)
|
global $lang, $mybb, $db, $session;
if($mybb->settings['enablepms'] == 0)
|
{ return false;
| { return false;
|
}
if(!is_array($pm))
| }
if(!is_array($pm))
|
Zeile 8256 | Zeile 8536 |
---|
$num_args = count($pm[$key]);
for($i = 1; $i < $num_args; $i++)
|
$num_args = count($pm[$key]);
for($i = 1; $i < $num_args; $i++)
|
{
| {
|
$lang_string = str_replace('{'.$i.'}', $pm[$key][$i], $lang_string); } }
| $lang_string = str_replace('{'.$i.'}', $pm[$key][$i], $lang_string); } }
|
Zeile 8329 | Zeile 8609 |
---|
}
$pm['options'] = array(
|
}
$pm['options'] = array(
|
"signature" => 0,
| |
"disablesmilies" => 0, "savecopy" => 0, "readreceipt" => 0
| "disablesmilies" => 0, "savecopy" => 0, "readreceipt" => 0
|
Zeile 8466 | Zeile 8745 |
---|
* * @param string $url The url to validate. * @param bool $relative_path Whether or not the url could be a relative path.
|
* * @param string $url The url to validate. * @param bool $relative_path Whether or not the url could be a relative path.
|
| * @param bool $allow_local Whether or not the url could be pointing to local networks.
|
* * @return bool Whether this is a valid url. */
|
* * @return bool Whether this is a valid url. */
|
function my_validate_url($url, $relative_path=false)
| function my_validate_url($url, $relative_path=false, $allow_local=false)
|
{
|
{
|
if($relative_path && my_substr($url, 0, 1) == '/' || preg_match('_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,}))\.?)(?::\d{2,5})?(?:[/?#]\S*)?$_iuS', $url))
| if($allow_local) { $regex = '_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:localhost|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,}))\.?))(?::\d{2,5})?(?:[/?#]\S*)?$_iuS'; } else { $regex = '_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,}))\.?)(?::\d{2,5})?(?:[/?#]\S*)?$_iuS'; }
if($relative_path && my_substr($url, 0, 1) == '/' || preg_match($regex, $url))
|
{ return true;
|
{ return true;
|
| } return false; }
/** * Strip html tags from string, also removes <script> and <style> contents. * * @deprecated * @param string $string String to stripe * @param string $allowable_tags Allowed html tags * * @return string Striped string */ function my_strip_tags($string, $allowable_tags = '') { $pattern = array( '@(<)style[^(>)]*?(>).*?(<)/style(>)@siu', '@(<)script[^(>)]*?.*?(<)/script(>)@siu', '@<style[^>]*?>.*?</style>@siu', '@<script[^>]*?.*?</script>@siu', ); $string = preg_replace($pattern, '', $string); return strip_tags($string, $allowable_tags); }
/** * Escapes a RFC 4180-compliant CSV string. * Based on https://github.com/Automattic/camptix/blob/f80725094440bf09861383b8f11e96c177c45789/camptix.php#L2867 * * @param string $string The string to be escaped * @param boolean $escape_active_content Whether or not to escape active content trigger characters * @return string The escaped string */ function my_escape_csv($string, $escape_active_content=true) { if($escape_active_content) { $active_content_triggers = array('=', '+', '-', '@'); $delimiters = array(',', ';', ':', '|', '^', "\n", "\t", " ");
$first_character = mb_substr($string, 0, 1);
if( in_array($first_character, $active_content_triggers, true) || in_array($first_character, $delimiters, true) ) { $string = "'".$string; }
foreach($delimiters as $delimiter) { foreach($active_content_triggers as $trigger) { $string = str_replace($delimiter.$trigger, $delimiter."'".$trigger, $string); } }
|
}
|
}
|
return false;
| $string = str_replace('"', '""', $string);
return $string;
|
}
| }
|