full text search 2

This commit is contained in:
yuri
2018-06-20 14:51:50 +03:00
parent 775641aee1
commit fa0cb01660
5 changed files with 157 additions and 43 deletions
+3 -1
View File
@@ -340,8 +340,10 @@ abstract class Base
$columnList = explode(',', $columns);
$tableName = $this->toDb($entity->getEntityType());
foreach ($columnList as $i => $column) {
$columnList[$i] = $this->sanitize($column);
$columnList[$i] = $tableName . '.' . $this->sanitize($column);
}
$query = $this->quote($query);