Changeset 4894

Show
Ignore:
Timestamp:
09/08/08 21:45:43 (10 months ago)
Author:
jwage
Message:

fixes #1420 Fixes segfault when combining column aggregation inheritance and I18n behavior

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Table.php

    r4857 r4894  
    315315            $ref = new ReflectionClass($parent); 
    316316 
    317             if ($ref->isAbstract()) { 
     317            if ($ref->isAbstract() || ! $class->isSubClassOf($parent)) { 
    318318                continue; 
    319319            }