From d1b9daa2b1c7100c812255b2f2d294ca260ed3b9 Mon Sep 17 00:00:00 2001 From: zYne <zYne@625475ce-881a-0410-a577-b389adb331d8> Date: Fri, 13 Apr 2007 17:53:16 +0000 Subject: [PATCH] made Doctrine_Query ignore empty orderby parameters --- lib/Doctrine/Query.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index a1707fb21..9faac32fc 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -550,15 +550,20 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { case 'having': case 'orderby': case 'groupby': - $class = "Doctrine_Query_".ucwords($name); + if (empty($args[0])) { + return $this; + } + + $class = 'Doctrine_Query_' . ucwords($name); $parser = new $class($this); $this->parts[$name] = array($parser->parse($args[0])); break; case 'limit': case 'offset': - if($args[0] == null) + if($args[0] == null) { $args[0] = false; + } $this->parts[$name] = $args[0]; break;