From bba435d7a15b5690669fdd059a7290ad87f00e00 Mon Sep 17 00:00:00 2001
From: RossC0 <RossC0@625475ce-881a-0410-a577-b389adb331d8>
Date: Fri, 20 Jul 2007 10:11:13 +0000
Subject: [PATCH] [#404] restored addFrom for the DQL - went missing in
 Query.php refactorings

---
 lib/Doctrine/Query/Abstract.php | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/lib/Doctrine/Query/Abstract.php b/lib/Doctrine/Query/Abstract.php
index af0751c6e..aaf5cc3ea 100644
--- a/lib/Doctrine/Query/Abstract.php
+++ b/lib/Doctrine/Query/Abstract.php
@@ -43,6 +43,17 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
     {
         return $this->parseQueryPart('select', $select, true);
     }
+    /**
+     * addFrom
+     * adds fields to the FROM part of the query
+     *
+     * @param string $from        Query FROM part
+     * @return Doctrine_Query
+     */
+    public function addFrom($from)
+    {
+        return $this->parseQueryPart('from', $from, true);
+    }
     /**
      * addWhere
      * adds conditions to the WHERE part of the query