mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX #3798 ajshort: Let searchcontext be used on sitetree
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@73758 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
2964cb625d
commit
6c2b2c2e67
@ -108,7 +108,7 @@ class SearchContext extends Object {
|
||||
if($existingQuery) {
|
||||
$query = $existingQuery;
|
||||
} else {
|
||||
$query = $model->extendedSQL();
|
||||
$query = $model->buildSQL();
|
||||
}
|
||||
|
||||
$SQL_limit = Convert::raw2sql($limit);
|
||||
@ -137,10 +137,11 @@ class SearchContext extends Object {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$query->connective = $this->connective;
|
||||
$query->distinct = true;
|
||||
|
||||
$model->extend('augmentSQL', $query);
|
||||
|
||||
return $query;
|
||||
}
|
||||
|
||||
|
@ -94,7 +94,7 @@ abstract class SearchFilter extends Object {
|
||||
}
|
||||
if($candidateClass == 'DataObject') user_error("Couldn't find field $this->name in any of $this->model's tables.", E_USER_ERROR);
|
||||
|
||||
return $candidateClass . "." . $this->name;
|
||||
return "`$candidateClass`.`$this->name`";
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user