diff --git a/lib/Doctrine/Table.php b/lib/Doctrine/Table.php index 3500a2348..afa8211a6 100644 --- a/lib/Doctrine/Table.php +++ b/lib/Doctrine/Table.php @@ -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; }