enabled) { __("This page is restricted to authorized staff"); exit; } $fields = array ( "login" => array ("post", "string", ""), "pass" => array ("post", "string", ""), "passconf" => array ("post", "string", ""), "canpass" => array ("post", "integer", ""), "notes" => array ("post", "string", ""), "nom" => array ("post", "string", ""), "prenom" => array ("post", "string", ""), "nmail" => array ("post", "string", ""), "type" => array ("post", "string", ""), "create_dom_list" => array ("post", "string", ""), "submit" => array ("post", "string", ""), ); getFields($fields); if ($pass != $passconf) { $error = _("Passwords do not match"); include("adm_add.php"); exit(); } // Attemp to create, exit if fail if (!($u=$admin->add_mem($login, $pass, $nom, $prenom, $nmail, $canpass, $type, 0, $notes, 0, $create_dom_list))) { $error=$err->errstr(); include ("adm_add.php"); exit; } $error=_("The new member has been successfully created"); include("adm_list.php"); exit; ?>