Revision 549
Added by doc almost 18 years ago
| save.php | ||
|---|---|---|
| 40 | 40 |
} |
| 41 | 41 |
|
| 42 | 42 |
// Gather details entered |
| 43 |
$groups_id = implode(",", $_POST['groups']);
|
|
| 43 |
$groups_id = (isset($_POST['groups'])) ? $groups_id = implode(",", $_POST['groups']) : '';
|
|
| 44 | 44 |
$active = $_POST['active'][0]; |
| 45 | 45 |
$username_fieldname = $admin->get_post('username_fieldname');
|
| 46 | 46 |
$username = strtolower($admin->get_post($username_fieldname)); |
Also available in: Unified diff
fixed bug in frontend login and multiple groups (in conjunction with error_reporting = E_ALL)