From fb818ca909f301cd2b7fd835137a2cf8ef89d0bb Mon Sep 17 00:00:00 2001 From: Andre Chalom Date: Thu, 11 Feb 2016 19:18:42 -0200 Subject: [PATCH] Minor changes --- html/class/aluno.php | 2 +- html/exercicio.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/html/class/aluno.php b/html/class/aluno.php index ee2c93f..215c5f5 100644 --- a/html/class/aluno.php +++ b/html/class/aluno.php @@ -24,7 +24,7 @@ public function create($nome, $turma, $senha) { $res->bind_param('sis', $nome, $turma->getId(), $senha); $res->execute(); if ($mysqli->error) return "

Houve um erro ao inserir o aluno $nome!

"; - else return "Aluno $nome inserido com sucesso"; + else return "

Aluno $nome inserido com sucesso

"; } public function getNome() {return $this->nome;} public function getId() { return $this->id; } diff --git a/html/exercicio.php b/html/exercicio.php index 4f7991e..3dc1cff 100644 --- a/html/exercicio.php +++ b/html/exercicio.php @@ -2,8 +2,9 @@ if(empty($_REQUEST['exerc'])) {echo "

Erro. Se você usou um link para chegar aqui, notifique o administrador

"; exit;} $X = new Exercicio($_REQUEST['exerc']); +$nome = $X->getNome(); -if (empty($X->getNome())) {echo "

Erro. Se você usou um link para chegar aqui, notifique o administrador

"; exit;} +if (empty($nome)) {echo "

Erro. Se você usou um link para chegar aqui, notifique o administrador

"; exit;} ?>