Changeset 5126

Show
Ignore:
Timestamp:
10/21/08 23:33:07 (9 months ago)
Author:
jwage
Message:

[1.0, 1.1] fixes #1575

Location:
branches
Files:
2 modified

Legend:

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

    r5095 r5126  
    193193    public function reset() 
    194194    { 
     195        $this->_subqueryAliases = array(); 
     196        $this->_aggregateAliasMap = array(); 
     197        $this->_pendingAggregates = array(); 
    195198        $this->_pendingJoinConditions = array(); 
    196199        $this->_pendingSubqueries = array(); 
  • branches/1.1/lib/Doctrine/Query.php

    r5121 r5126  
    200200    public function reset() 
    201201    { 
     202        $this->_subqueryAliases = array(); 
     203        $this->_aggregateAliasMap = array(); 
     204        $this->_pendingAggregates = array(); 
    202205        $this->_pendingJoinConditions = array(); 
    203206        $this->_pendingSubqueries = array(); 
     
    208211        $this->_needsSubquery = false; 
    209212        $this->_isLimitSubqueryUsed = false; 
    210         $this->_processedParamIdx = 0; 
    211213    } 
    212214