1
0

Update include/admin/groups.inc.php

fixed display group name

analog to 412359adf7
This commit is contained in:
Ian
2013-02-18 14:59:05 +01:00
parent 5344f90338
commit 5c3b2d3591

View File

@ -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();