DataObjects/Core_project.php
authorAlan Knowles <alan@roojs.com>
Fri, 22 Jun 2018 06:32:13 +0000 (14:32 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 22 Jun 2018 06:32:13 +0000 (14:32 +0800)
DataObjects/Core_project.php

index b899ef3..de9db55 100644 (file)
@@ -93,7 +93,12 @@ class Pman_Core_DataObjects_Core_project extends DB_DataObject
         $tn = $this->tableName();
         if (!empty($q['query']['project_search'])) {
             $s = $this->escape($q['query']['project_search']);
-            $this->whereAdd(" ({$tn}.code LIKE '$s%') OR ({$tn}.name LIKE '%$s%')");
+            $this->whereAdd(" ({$tn}.code LIKE '$s%')
+                            OR
+                            ({$tn}.name LIKE '%$s%')
+                            OR
+                            join_client_id_id.name LIKE '%$s%'
+                ");
         }
         // types of project to list ... - default is only the open ones...
         if (!empty($q['query']['project_indaterange'])) {