Changeset 3856

Show
Ignore:
Timestamp:
02/20/08 16:47:50 (17 months ago)
Author:
jwage
Message:

Fixed issue with FROM parameters not being included in the count() query.

Files:
1 modified

Legend:

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

    r3855 r3856  
    17951795        } 
    17961796        // append parameters 
    1797         $params = array_merge($this->_params['where'], $this->_params['having'], $params); 
     1797        $params = array_merge($this->_params['where'], $this->_params['having'], $this->_params['join'], $params); 
    17981798 
    17991799        $params = $this->convertEnums($params);