Changeset 4366
- Timestamp:
- 05/16/08 20:40:54 (14 months ago)
- Location:
- branches/0.11/lib/Doctrine
- Files:
-
- 2 modified
-
Hydrator.php (modified) (1 diff)
-
Query/JoinCondition.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Hydrator.php
r4359 r4366 284 284 // Parse each column name only once. Cache the results. 285 285 if ( ! isset($cache[$key])) { 286 // check ignored names. fastest solution for now. if we get more we'll start 287 // to introduce a list. 288 if ($key == 'DOCTRINE_ROWNUM') continue; 286 289 $e = explode('__', $key); 287 290 $last = strtolower(array_pop($e)); -
branches/0.11/lib/Doctrine/Query/JoinCondition.php
r4252 r4366 36 36 { 37 37 $condition = trim($condition); 38 38 39 39 $e = $this->_tokenizer->sqlExplode($condition); 40 40