/**
  * Execute the form.
  * @param AUDITABLE $obj
  * @access private
  */
 public function commit($obj)
 {
     if ($this->object_exists() && $this->value_for('quick_save')) {
         $obj->store();
     } else {
         parent::commit($obj);
     }
 }