Author: VaLTeR
Date: 2010-03-19 14:29:08 +0100 (Fri, 19 Mar 2010)
New Revision: 28621

Modified:
   doc/branches/1.2/jobeet/en/06.txt
   doc/branches/1.2/jobeet/es/06.txt
   doc/branches/1.2/jobeet/fr/06.txt
   doc/branches/1.2/jobeet/ja/06.txt
   doc/branches/1.2/jobeet/ru/06.txt
   doc/branches/1.2/jobeet/zh_CN/06.txt
Log:
Typo in ->leftJoin('c.JobeetJobs j'). Must be ->leftJoin('c.JobeetJob j')

Modified: doc/branches/1.2/jobeet/en/06.txt
===================================================================
--- doc/branches/1.2/jobeet/en/06.txt   2010-03-19 13:07:41 UTC (rev 28620)
+++ doc/branches/1.2/jobeet/en/06.txt   2010-03-19 13:29:08 UTC (rev 28621)
@@ -527,7 +527,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d H:i:s', time()));
 
         return $q->execute();

Modified: doc/branches/1.2/jobeet/es/06.txt
===================================================================
--- doc/branches/1.2/jobeet/es/06.txt   2010-03-19 13:07:41 UTC (rev 28620)
+++ doc/branches/1.2/jobeet/es/06.txt   2010-03-19 13:29:08 UTC (rev 28621)
@@ -452,7 +452,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d h:i:s', time()));
 
         return $q->execute();

Modified: doc/branches/1.2/jobeet/fr/06.txt
===================================================================
--- doc/branches/1.2/jobeet/fr/06.txt   2010-03-19 13:07:41 UTC (rev 28620)
+++ doc/branches/1.2/jobeet/fr/06.txt   2010-03-19 13:29:08 UTC (rev 28621)
@@ -527,7 +527,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d H:i:s', time()));
 
         return $q->execute();

Modified: doc/branches/1.2/jobeet/ja/06.txt
===================================================================
--- doc/branches/1.2/jobeet/ja/06.txt   2010-03-19 13:07:41 UTC (rev 28620)
+++ doc/branches/1.2/jobeet/ja/06.txt   2010-03-19 13:29:08 UTC (rev 28621)
@@ -489,7 +489,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d H:i:s', time()));
 
         return $q->execute();

Modified: doc/branches/1.2/jobeet/ru/06.txt
===================================================================
--- doc/branches/1.2/jobeet/ru/06.txt   2010-03-19 13:07:41 UTC (rev 28620)
+++ doc/branches/1.2/jobeet/ru/06.txt   2010-03-19 13:29:08 UTC (rev 28621)
@@ -512,7 +512,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d h:i:s', time()));
 
         return $q->execute();

Modified: doc/branches/1.2/jobeet/zh_CN/06.txt
===================================================================
--- doc/branches/1.2/jobeet/zh_CN/06.txt        2010-03-19 13:07:41 UTC (rev 
28620)
+++ doc/branches/1.2/jobeet/zh_CN/06.txt        2010-03-19 13:29:08 UTC (rev 
28621)
@@ -510,7 +510,7 @@
       public function getWithJobs()
       {
         $q = $this->createQuery('c')
-          ->leftJoin('c.JobeetJobs j')
+          ->leftJoin('c.JobeetJob j')
           ->where('j.expires_at > ?', date('Y-m-d h:i:s', time()));
 
         return $q->execute();

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to