mirror of
https://github.com/Circlepuller/Tinyboard.git
synced 2025-01-17 13:28:31 +01:00
Fixed PHP 7.3 case-sensitive constants issue in inc/functions.php
This commit is contained in:
parent
3f581371b8
commit
38c4975e97
@ -385,7 +385,7 @@ function define_groups() {
|
||||
foreach ($config['mod']['groups'] as $group_value => $group_name) {
|
||||
$group_name = strtoupper($group_name);
|
||||
if(!defined($group_name)) {
|
||||
define($group_name, $group_value, true);
|
||||
define($group_name, $group_value);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user