$opId); $page['groups'] = get_groups(false); $errors = array(); $op = operator_by_id($opId); if( !$op ) { $errors[] = getlocal("no_such_operator"); } else if( isset($_POST['op']) ) { $new_groups = array(); foreach($page['groups'] as $group) { if( verifyparam("group".$group['groupid'],"/^on$/", "") == "on") { $new_groups[] = $group['groupid']; } } update_operator_groups($op['operatorid'],$new_groups); header("Location: $webimroot/operator/operator.php?op=$opId"); exit; } $page['formgroup'] = array(); $page['currentop'] = $opId ? topage(get_operator_name($op))." (".$op['vclogin'].")" : ""; if($opId) { foreach(get_operator_groupids($opId) as $rel) { $page['formgroup'][] = $rel['groupid']; } } prepare_menu($operator); setup_operator_settings_tabs($opId,2); start_html_output(); require('../view/operator_groups.php'); ?>