Changeset 4793
- Timestamp:
- 08/22/08 11:51:41 (11 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Query.php
r4768 r4793 440 440 441 441 // Check that the parent join (if there is one), is a "fetch join", too. 442 if ( isset($this->_queryComponents[$componentAlias]['parent'])) {442 if ( ! $this->isSubquery() && isset($this->_queryComponents[$componentAlias]['parent'])) { 443 443 $parentAlias = $this->_queryComponents[$componentAlias]['parent']; 444 444 if (is_string($parentAlias) && ! isset($this->_pendingFields[$parentAlias])