Added a check to stop redefining JANITOR, MOD and ADMIN
This commit is contained in:
parent
971a473e09
commit
d65bf26771
@ -215,9 +215,11 @@
|
|||||||
$config['mod']['ip_recentposts'] = 5;
|
$config['mod']['ip_recentposts'] = 5;
|
||||||
|
|
||||||
// Probably best not to change these:
|
// Probably best not to change these:
|
||||||
define('JANITOR', 0, true);
|
if(!defined('JANITOR')) {
|
||||||
define('MOD', 1, true);
|
define('JANITOR', 0, true);
|
||||||
define('ADMIN', 2, true);
|
define('MOD', 1, true);
|
||||||
|
define('ADMIN', 2, true);
|
||||||
|
}
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
// What level of administration you need to:
|
// What level of administration you need to:
|
||||||
|
Loading…
Reference in New Issue
Block a user