Changeset 3723 for branches/0.9/lib/Doctrine/Query/Having.php
- Timestamp:
- 02/10/08 09:49:22 (2 years ago)
- Files:
-
- 1 modified
-
branches/0.9/lib/Doctrine/Query/Having.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9/lib/Doctrine/Query/Having.php
r3032 r3723 94 94 $value = implode(' ', $tokens); 95 95 $part .= ' ' . $operator . ' ' . $value; 96 // check the RHS for aggregate functions 97 if (strpos($value, '(') !== false) { 98 $value = $this->parseAggregateFunction($value); 99 } 96 100 return $part; 97 101 }