1
0
mirror of synced 2024-12-13 22:56:04 +03:00

fixing typo

This commit is contained in:
pookey 2006-11-05 20:23:54 +00:00
parent 319b645daa
commit db4634557f

View File

@ -199,7 +199,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
$q = 'SELECT COUNT(DISTINCT ' . $this->getShortAlias($table->getTableName()) $q = 'SELECT COUNT(DISTINCT ' . $this->getShortAlias($table->getTableName())
. '.' . $table->getIdentifier() . '.' . $table->getIdentifier()
. ') FROM ' . $table->getTableName() . ' ' . $this->getShortAlias($table->getTableName); . ') FROM ' . $table->getTableName() . ' ' . $this->getShortAlias($table->getTableName());
foreach($join as $j) { foreach($join as $j) {
$q .= ' '.implode(' ',$j); $q .= ' '.implode(' ',$j);