Changeset 3789

Show
Ignore:
Timestamp:
02/15/08 16:57:46 (17 months ago)
Author:
guilhermeblanco
Message:

Small fix convertion of enum (fixes #788)

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Query.php

    r3782 r3789  
    11021102            $this->_pendingAggregates = array(); 
    11031103            $this->_aggregateAliasMap = array(); 
    1104             $this->_enumParams = array(); 
    11051104        } 
    11061105        $this->reset(); 
  • branches/0.9/lib/Doctrine/Query.php

    r3787 r3789  
    11221122            $this->pendingAggregates = array(); 
    11231123            $this->aggregateMap = array(); 
    1124             $this->_enumParams = array(); 
    11251124        } 
    11261125        $this->reset(); 
     
    18531852        $params = array_merge($this->getParams(), $params); 
    18541853 
     1854        $params = $this->convertEnums($params); 
     1855 
    18551856        $results = $this->getConnection()->fetchAll($q, $params); 
    18561857 
  • trunk/lib/Doctrine/Query.php

    r3782 r3789  
    10631063            $this->_pendingAggregates = array(); 
    10641064            $this->_aggregateAliasMap = array(); 
    1065             $this->_enumParams = array(); 
    10661065        } 
    10671066        $this->reset();