From 4e4dc0a6dfdc2b7eb64f997d972cd4aebd3a72ef Mon Sep 17 00:00:00 2001 From: meus Date: Sat, 28 Jul 2007 20:27:38 +0000 Subject: [PATCH] fixed some failing testcases in columnaggregation. the if check was to strict --- lib/Doctrine/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }