Changeset 4366

Show
Ignore:
Timestamp:
05/16/08 20:40:54 (14 months ago)
Author:
romanb
Message:

Fixed #917.

Location:
branches/0.11/lib/Doctrine
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Hydrator.php

    r4359 r4366  
    284284            // Parse each column name only once. Cache the results.  
    285285            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; 
    286289                $e = explode('__', $key); 
    287290                $last = strtolower(array_pop($e)); 
  • branches/0.11/lib/Doctrine/Query/JoinCondition.php

    r4252 r4366  
    3636    { 
    3737        $condition = trim($condition); 
    38  
     38         
    3939        $e = $this->_tokenizer->sqlExplode($condition); 
    4040