// Clean code

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12861 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
aFolletete
2012-01-31 15:24:02 +00:00
parent 34d6f4b9cb
commit 7ec00f63d1

View File

@@ -121,8 +121,8 @@ class StatsBestVouchers extends ModuleGrid
if (Validate::IsName($this->_sort))
{
$this->_query .= ' ORDER BY `'.$this->_sort.'`';
if (isset($this->_direction))
$this->_query .= ' '.$this->_direction;
if (isset($this->_direction) && (strtoupper($this->_direction) == 'ASC' || strtoupper($this->_direction) == 'DESC'))
$this->_query .= ' '.pSQL($this->_direction);
}
if (($this->_start === 0 || Validate::IsUnsignedInt($this->_start)) && Validate::IsUnsignedInt($this->_limit))
$this->_query .= ' LIMIT '.$this->_start.', '.($this->_limit);