fixed some failing testcases in columnaggregation. the if check was to strict
This commit is contained in:
parent
82f3ae52eb
commit
4e4dc0a6df
@ -1005,7 +1005,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||
$inheritanceMap = $table->getOption('inheritanceMap');
|
||||
$nomatch = false;
|
||||
foreach ($inheritanceMap as $key => $value) {
|
||||
if ( ! isset($this->data[$key]) || $this->data[$key] !== $value) {
|
||||
if ( ! isset($this->data[$key]) || $this->data[$key] != $value) {
|
||||
$nomatch = true;
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user