checking hook
[web.mtrack] / MTrackWeb.php
index 0fdf069..b78a4d5 100644 (file)
@@ -156,16 +156,20 @@ class MTrackWeb extends HTML_FlexyFramework_Page
            
             $ar = $p->fetchAll('id', 'name');
         } else {
-            DB_DAtaObject::debugLevel(1);
+            
+           // DB_DAtaObject::debugLevel(1);
             $p->applyFilters(array(), $this->authUser, $this);
             if (!$this->authUser->hasPerm('Core.Projects_All', 'S')) { 
                 $p->whereAdd("Projects.id in (SELECT ProjectDirectory.project_id FROM ProjectDirectory WHERE
                         person_id = ". $this->authUser->id . " and role != '')");
             }
+            /*
+             * SOME PROJECTS MIGHT NOT HAVE REPO's...
             $p->whereAdd('id in (SELECT distinct(project_id) FROM mtrack_repos)');
+            */
             // $pd->whereAdd("role != ''");
             
-            $p->orderBy('Projects.name ASC');
+            $p->orderBy('core_project.name ASC');
             unset($p->client_id); // default projects serach enforces this..
             $ar = $p->fetchAll('id', 'name');
         }