From db4634557fa088c375abb401fbd2ea3a16e98c28 Mon Sep 17 00:00:00 2001 From: pookey Date: Sun, 5 Nov 2006 20:23:54 +0000 Subject: [PATCH] fixing typo --- lib/Doctrine/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 3fbb69a9e..11eb77fa9 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -199,7 +199,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { $q = 'SELECT COUNT(DISTINCT ' . $this->getShortAlias($table->getTableName()) . '.' . $table->getIdentifier() - . ') FROM ' . $table->getTableName() . ' ' . $this->getShortAlias($table->getTableName); + . ') FROM ' . $table->getTableName() . ' ' . $this->getShortAlias($table->getTableName()); foreach($join as $j) { $q .= ' '.implode(' ',$j);