BUGFIX: LessThanFilter uses SearchFilter::getDbFormattedValue, just like GreaterThanFilter (from r95388)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@95637 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2009-12-16 05:49:33 +00:00
parent 48211b4931
commit bf19a704a4

View File

@ -17,7 +17,7 @@ class LessThanFilter extends SearchFilter {
return $query->where(sprintf(
"%s < '%s'",
$this->getDbName(),
Convert::raw2sql($this->getValue())
Convert::raw2sql($this->getDbFormattedValue())
));
}