From 33a6a5e3ab74631183bee8fffa688a64490f8311 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 17 Jun 2007 20:22:39 +0000 Subject: [PATCH] --- lib/Doctrine/Query.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 97b9b865e..6bf2c8dd0 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -791,10 +791,8 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable $subquery .= ( ! empty($this->parts['where']))? ' WHERE ' . implode(' AND ', $this->parts['where']) : ''; $subquery .= ( ! empty($this->parts['groupby']))? ' GROUP BY ' . implode(', ', $this->parts['groupby']) : ''; $subquery .= ( ! empty($this->parts['having']))? ' HAVING ' . implode(' AND ', $this->parts['having']) : ''; - /** - * the order by part isn't needed in the limit-subquery ? - */ - //$subquery .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(', ', $this->parts['orderby']) : ''; + + $subquery .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(', ', $this->parts['orderby']) : ''; // add driver specific limit clause $subquery = $this->_conn->modifyLimitQuery($subquery, $this->parts['limit'], $this->parts['offset']);