Update include/admin/groups.inc.php
fixed display group name
analog to 412359adf7
This commit is contained in:
@ -71,6 +71,10 @@ if ($serendipity['GET']['adminAction'] == 'edit' || isset($_POST['NEW'])) {
|
||||
} else {
|
||||
$from = array();
|
||||
}
|
||||
// check being constant or var
|
||||
$from['name'] = defined($from['name']) ? constant($from['name']) : $from['name'];
|
||||
$from['confvalue'] = defined($from['confvalue']) ? constant($from['confvalue']) : $from['confvalue'];
|
||||
|
||||
$data['from'] = $from;
|
||||
|
||||
$allusers = serendipity_fetchUsers();
|
||||
|
Reference in New Issue
Block a user