|
@@ -120,18 +120,19 @@ function listarAlunos ($curso) {
|
|
|
|
|
|
for ($i = 0; $i < count($files1); $i++) {
|
|
|
if ($files1[$i] == "." || $files1[$i] == "..") continue;
|
|
|
- $ex = explode("-", $files1[$i]);
|
|
|
+ $ex = explode("_iassign_", $files1[$i])[1];
|
|
|
+ $ex = explode("-", $ex)[0];
|
|
|
|
|
|
$ja_existe = false;
|
|
|
for ($j = 0; $j < count($nomes); $j ++) {
|
|
|
- if ($nomes[$j] == $ex[2]) {
|
|
|
+ if ($nomes[$j] == $ex) {
|
|
|
$ja_existe = true;
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (!$ja_existe) {
|
|
|
- array_push($nomes, $ex[2]);
|
|
|
+ array_push($nomes, $ex);
|
|
|
}
|
|
|
}
|
|
|
|