From 404f366748e42df0a49085ae7a27276a0ab689b7 Mon Sep 17 00:00:00 2001 From: Damien Metzger Date: Wed, 26 Dec 2012 12:01:08 +0100 Subject: [PATCH] [-] MO : fixed bad character in the statsbestvouchers module --- modules/statsbestvouchers/statsbestvouchers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/statsbestvouchers/statsbestvouchers.php b/modules/statsbestvouchers/statsbestvouchers.php index 8c7f6ef60..3151d486e 100644 --- a/modules/statsbestvouchers/statsbestvouchers.php +++ b/modules/statsbestvouchers/statsbestvouchers.php @@ -120,7 +120,7 @@ class StatsBestVouchers extends ModuleGrid if (Validate::IsName($this->_sort)) { $this->_query .= ' ORDER BY `'.$this->_sort.'`'; - if (isset($this->_direction) && (strtoupper($this->_direction) == 'ASC' || strtoupper($this->_direction) == 'DESC')) + 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))