/**
  * @see Form::save()
  */
 public function save()
 {
     parent::save();
     // parse URLs
     if ($this->parseURL == 1) {
         require_once WCF_DIR . 'lib/data/message/bbcode/URLParser.class.php';
         $this->text = URLParser::parse($this->text);
     }
     $this->saveOptions();
 }