equal
deleted
inserted
replaced
12 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
12 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
13 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
13 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
14 */ |
14 */ |
15 |
15 |
16 // Ban types |
16 // Ban types |
17 |
|
18 define('BAN_IP', 1); |
17 define('BAN_IP', 1); |
19 define('BAN_USER', 2); |
18 define('BAN_USER', 2); |
20 define('BAN_EMAIL', 3); |
19 define('BAN_EMAIL', 3); |
21 |
20 |
22 // ACL permission types |
21 // ACL permission types |
111 |
110 |
112 // Special level for guests |
111 // Special level for guests |
113 define('USER_LEVEL_GUEST', 1); |
112 define('USER_LEVEL_GUEST', 1); |
114 |
113 |
115 // Group status |
114 // Group status |
116 |
|
117 define('GROUP_CLOSED', 1); |
115 define('GROUP_CLOSED', 1); |
118 define('GROUP_REQUEST', 2); |
116 define('GROUP_REQUEST', 2); |
119 define('GROUP_HIDDEN', 3); |
117 define('GROUP_HIDDEN', 3); |
120 define('GROUP_OPEN', 4); |
118 define('GROUP_OPEN', 4); |
121 |
119 |