Browse Source

Added a check to stop redefining JANITOR, MOD and ADMIN

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

2
inc/config.php

@ -215,9 +215,11 @@
$config['mod']['ip_recentposts'] = 5;
// Probably best not to change these:
if(!defined('JANITOR')) {
define('JANITOR', 0, true);
define('MOD', 1, true);
define('ADMIN', 2, true);
}
// Permissions
// What level of administration you need to:

Loading…
Cancel
Save