/**
  * @see Form::save()
  */
 public function save()
 {
     parent::save();
     // save
     $this->contestRatingoption = ContestRatingoptionEditor::create($this->topic, $this->text, $this->classID, $this->position, WCF::getLanguage()->getLanguageID());
     $this->saved();
     // reset values
     $this->topic = $this->text = $this->classID = '';
     $this->languageID = $this->position = 0;
     // show success message
     WCF::getTPL()->assign('success', true);
 }