// blocklayered, up version number, fix bug on IE8, plus change filter category ordering

This commit is contained in:
mDeflotte
2012-02-08 10:29:08 +00:00
parent c42b18da05
commit 8f40b86560
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ class BlockLayered extends Module
{
$this->name = 'blocklayered';
$this->tab = 'front_office_features';
$this->version = '1.7.7';
$this->version = '1.7.8';
$this->author = 'PrestaShop';
$this->need_instance = 0;
@@ -2505,7 +2505,7 @@ class BlockLayered extends Module
WHERE c.nleft > '.(int)$parent->nleft.'
AND c.nright < '.(int)$parent->nright.'
'.($depth ? 'AND c.level_depth <= '.($parent->level_depth+(int)$depth) : '').'
GROUP BY c.id_category ORDER BY level_depth, c.position';
GROUP BY c.id_category ORDER BY c.nleft, c.position';
}
foreach ($filters as $filterTmp)