Zeile 14 | Zeile 14 |
---|
* * @var string */
|
* * @var string */
|
public $version = "1.8.16";
| public $version = "1.8.38";
|
/** * The version code of MyBB we're running. * * @var integer */
|
/** * The version code of MyBB we're running. * * @var integer */
|
public $version_code = 1816;
| public $version_code = 1838;
|
/** * The current working directory.
| /** * The current working directory.
|
Zeile 184 | Zeile 184 |
---|
* @var string */ public $asset_url = null;
|
* @var string */ public $asset_url = null;
|
| /** * @var array */ public $session = array();
/** * @var string */ public $post_code;
/** * @var array */ public $admin;
|
/** * String input constant for use with get_input(). * * @see get_input */ const INPUT_STRING = 0;
|
/** * String input constant for use with get_input(). * * @see get_input */ const INPUT_STRING = 0;
|
/**
| /**
|
* Integer input constant for use with get_input(). * * @see get_input */ const INPUT_INT = 1;
|
* Integer input constant for use with get_input(). * * @see get_input */ const INPUT_INT = 1;
|
/**
| /**
|
* Array input constant for use with get_input(). * * @see get_input
| * Array input constant for use with get_input(). * * @see get_input
|
Zeile 235 | Zeile 251 |
---|
if(!is_array(IGNORE_CLEAN_VARS)) { $this->ignore_clean_variables = array(IGNORE_CLEAN_VARS);
|
if(!is_array(IGNORE_CLEAN_VARS)) { $this->ignore_clean_variables = array(IGNORE_CLEAN_VARS);
|
}
| }
|
else { $this->ignore_clean_variables = IGNORE_CLEAN_VARS;
| else { $this->ignore_clean_variables = IGNORE_CLEAN_VARS;
|
Zeile 335 | Zeile 351 |
---|
function parse_cookies() { if(!is_array($_COOKIE))
|
function parse_cookies() { if(!is_array($_COOKIE))
|
{ return; }
$prefix_length = strlen($this->settings['cookieprefix']);
| { return; }
$prefix_length = strlen($this->settings['cookieprefix']);
|
foreach($_COOKIE as $key => $val) {
| foreach($_COOKIE as $key => $val) {
|
Zeile 349 | Zeile 365 |
---|
// Fixes conflicts with one board having a prefix and another that doesn't on the same domain // Gives priority to our cookies over others (overwrites them)
|
// Fixes conflicts with one board having a prefix and another that doesn't on the same domain // Gives priority to our cookies over others (overwrites them)
|
if($this->cookies[$key])
| if(isset($this->cookies[$key]))
|
{ unset($this->cookies[$key]); }
| { unset($this->cookies[$key]); }
|
Zeile 559 | Zeile 575 |
---|
break; case "apc_load_error": $message = "APC needs to be configured with PHP to use the APC cache support.";
|
break; case "apc_load_error": $message = "APC needs to be configured with PHP to use the APC cache support.";
|
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "apcu_load_error": $message = "APCu needs to be configured with PHP to use the APCu cache support.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "eaccelerator_load_error":
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "eaccelerator_load_error":
|
Zeile 575 | Zeile 595 |
---|
break; case "xcache_load_error": $message = "Xcache needs to be configured with PHP to use the Xcache cache support.";
|
break; case "xcache_load_error": $message = "Xcache needs to be configured with PHP to use the Xcache cache support.";
|
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "redis_load_error": $message = "Your server does not have redis support enabled.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; default:
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; default:
|
Zeile 599 | Zeile 623 |
---|
*/
$grouppermignore = array("gid", "type", "title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
*/
$grouppermignore = array("gid", "type", "title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
$groupzerogreater = array("pmquota", "maxpmrecipients", "maxreputationsday", "attachquota", "maxemails", "maxposts", "edittimelimit", "maxreputationsperuser", "maxreputationsperthread", "emailfloodtime");
| $groupzerogreater = array( 'maxposts', 'attachquota', 'edittimelimit', 'maxreputationsperthread', 'maxreputationsperuser', 'maxreputationsday', 'maxwarningsday', 'pmquota', 'maxpmrecipients', 'maxemails', ); $groupzerolesser = array( 'canusesigxposts', 'emailfloodtime', ); $groupxgreater = array( 'reputationpower' => 0, ); $grouppermbyswitch = array( 'maxposts' => array('canpostthreads', 'canpostreplys'), 'attachquota' => 'canpostattachments', 'edittimelimit' => 'caneditposts', 'canusesigxposts' => 'canusesig', 'reputationpower' => 'cangivereputations', 'maxreputationsperthread' => 'cangivereputations', 'maxreputationsperuser' => 'cangivereputations', 'maxreputationsday' => 'cangivereputations', 'maxwarningsday' => 'canwarnusers', 'pmquota' => 'canusepms', 'maxpmrecipients' => 'canusepms', 'maxemails' => 'cansendemail', 'emailfloodtime' => 'cansendemail', );
|
$displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
// These are fields in the usergroups table that are also forum permission specific.
| $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
// These are fields in the usergroups table that are also forum permission specific.
|