1
0
mirror of synced 2025-02-20 14:13:15 +03:00

fixed some failing testcases in columnaggregation. the if check was to strict

This commit is contained in:
meus 2007-07-28 20:27:38 +00:00
parent 82f3ae52eb
commit 4e4dc0a6df

View File

@ -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;
}