Changeset 3723
- Timestamp:
- 02/10/08 14:49:22 (17 months ago)
- Files:
-
- 3 modified
-
branches/0.10/lib/Doctrine/Query/Having.php (modified) (1 diff)
-
branches/0.9/lib/Doctrine/Query/Having.php (modified) (1 diff)
-
trunk/lib/Doctrine/Query/Having.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Query/Having.php
r3212 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 } -
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 } -
trunk/lib/Doctrine/Query/Having.php
r3570 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 }