/** * Persists the object to the database without archiving it. * * @param PropelPDO $con Optional connection object * * @return The current object (for fluent API support) */ public function saveWithoutArchive(PropelPDO $con = null) { if (!$this->isNew()) { $this->archiveOnUpdate = false; } return $this->save($con); }