protected function doSave($con) { $affectedRows = 0; if (!$this->alreadyInSave) { $this->alreadyInSave = true; if ($this->isModified()) { if ($this->isNew()) { $pk = ImportSessionPeer::doInsert($this, $con); $affectedRows += 1; $this->setNew(false); } else { $affectedRows += ImportSessionPeer::doUpdate($this, $con); } $this->resetModified(); } $this->alreadyInSave = false; } return $affectedRows; }