Zeile 14 | Zeile 14 |
---|
* * @var string */
|
* * @var string */
|
public $version = "1.8.8";
| public $version = "1.8.26";
|
/** * The version code of MyBB we're running. * * @var integer */
|
/** * The version code of MyBB we're running. * * @var integer */
|
public $version_code = 1808;
| public $version_code = 1826;
|
/** * The current working directory.
| /** * The current working directory.
|
Zeile 161 | Zeile 161 |
---|
'adminsessions' => array('ip' => true), 'maillogs' => array('ipaddress' => true), 'moderatorlog' => array('ipaddress' => true),
|
'adminsessions' => array('ip' => true), 'maillogs' => array('ipaddress' => true), 'moderatorlog' => array('ipaddress' => true),
|
| 'pollvotes' => array('ipaddress' => true),
|
'posts' => array('ipaddress' => true), 'privatemessages' => array('ipaddress' => true), 'searchlog' => array('ipaddress' => true),
| 'posts' => array('ipaddress' => true), 'privatemessages' => array('ipaddress' => true), 'searchlog' => array('ipaddress' => true),
|
Zeile 558 | Zeile 559 |
---|
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": $message = "eAccelerator needs to be configured with PHP to use the eAccelerator cache support.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "eaccelerator_load_error": $message = "eAccelerator needs to be configured with PHP to use the eAccelerator cache support.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break;
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break;
|
case "memcache_load_error": $message = "Your server does not have memcache support enabled.";
|
case "memcache_load_error": $message = "Your server does not have memcache support enabled.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR;
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR;
|
break; case "memcached_load_error": $message = "Your server does not have memcached support enabled.";
|
break; case "memcached_load_error": $message = "Your server does not have memcached support enabled.";
|
$error_code = MYBB_CACHEHANDLER_LOAD_ERROR;
| $error_code = MYBB_CACHEHANDLER_LOAD_ERROR;
|
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 598 | Zeile 607 |
---|
*/
$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", "maxwarningsday", "maxposts", "edittimelimit", "canusesigxposts", "maxreputationsperuser", "maxreputationsperthread", "emailfloodtime");
| $groupzerogreater = array("pmquota", "maxpmrecipients", "maxreputationsday", "attachquota", "maxemails", "maxposts", "edittimelimit", "maxreputationsperuser", "maxreputationsperthread", "emailfloodtime");
|
$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.
|
Zeile 614 | Zeile 623 |
---|
'candeleteposts', 'candeletethreads', 'caneditattachments',
|
'candeleteposts', 'candeletethreads', 'caneditattachments',
|
| 'canviewdeletionnotice',
|
'modposts', 'modthreads', 'modattachments',
| 'modposts', 'modthreads', 'modattachments',
|