Changeset 5077

Show
Ignore:
Timestamp:
10/13/08 20:55:22 (9 months ago)
Author:
jwage
Message:

[1.0] fixes #1132 Fixes regression in r5074

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Query/Abstract.php

    r5074 r5077  
    959959        } 
    960960 
    961         $params = $this->getParams($params); 
    962  
    963         $this->_preQuery($params); 
     961        $preQueryParams = $this->getParams($params); 
     962 
     963        $this->_preQuery($preQueryParams); 
    964964 
    965965        if ($hydrationMode !== null) { 
    966966            $this->_hydrator->setHydrationMode($hydrationMode); 
    967967        } 
     968 
     969        $params = $this->getParams($params); 
    968970 
    969971        if ($this->_resultCache && $this->_type == self::SELECT) {