Browse Source

Added a check to stop redefining JANITOR, MOD and ADMIN

pull/40/head
Savetheinternet 13 years ago
parent
commit
d65bf26771
  1. 8
      inc/config.php

8
inc/config.php

@ -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…
Cancel
Save