Changeset 4988
- Timestamp:
- 09/26/08 17:39:05 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Connection/UnitOfWork.php
r4970 r4988 276 276 } 277 277 278 $this->conn->commit();279 278 // trigger postDelete for records skipped during the deletion (veto!) 280 279 foreach ($deletions as $skippedRecord) { 281 280 $this->_postDelete($skippedRecord); 282 281 } 282 283 $this->conn->commit(); 283 284 284 285 return true;