- // TODO lo mismo para asesores
- if (($f = fopen('data/int_2005.txt', 'r')) === false)
- {
- return 'Error al abrir archivo de integrantes!!!';
- }
- while (!feof($f))
- {
- $int = fgetcsv($f, 4096);
- if ($int[0] == $id) break;
- }
- if ($int[0] != $id)
+ if (!file_int_get($id) and !($ase = file_ase_get($id)))
+ return 'El número de registro no existe! No se puede asociar al grupo!';
+ if (@file_users_get($id))
+ return 'El usuario ya está registrado!';
+ if (!file_users_add($id, $pass, $email))
+ return 'No se pudo agregar el usuario!';
+ if ($admin)