Changeset 3960
- Timestamp:
- 03/10/08 06:33:54 (16 months ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Record/Abstract.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Record/Abstract.php
r3884 r3960 132 132 return; 133 133 } 134 134 135 $this->_table->setOption('subclasses', array_keys($map)); 135 $conn = $this->_table->getConnection();136 foreach ($map as $key => $value) {137 $table = $conn->getTable($key);138 $table->setOption('inheritanceMap', $value);139 }140 136 } 141 137