Changeset 3960

Show
Ignore:
Timestamp:
03/10/08 06:33:54 (16 months ago)
Author:
jwage
Message:

fixes #683

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Record/Abstract.php

    r3884 r3960  
    132132            return; 
    133133        } 
     134 
    134135        $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         } 
    140136    } 
    141137