validation -> Prevent from multiple validation - Not working

This commit is contained in:
Bertrand 2012-05-24 16:22:35 +02:00
commit 07395d9cce
3 changed files with 39 additions and 10 deletions

View file

@ -111,6 +111,11 @@ class Question
{
return $this->id;
}
public function isValidated()
{
return $this->validated;
}
}
?>