DBLayer : Allow the order of column with name 'group' by adding separator

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1917 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-01-07 03:23:34 +00:00
parent 82b35c115c
commit 53cd221538

View File

@@ -670,7 +670,7 @@ class dblayer extends PDO
{
if ($n > 0)
$req .= ",";
$req .= $o[0];
$req .= $this->sep.$o[0].$this->sep;
if (isset ($o[1]) && $o[1] === "DESC")
$req .= " DESC";
else