// Improve collections : where() method reworked (prototype changed) + validation of fields

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11383 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-12-19 16:57:28 +00:00
parent 85ed0d2295
commit 1d2f9e44c4
15 changed files with 240 additions and 67 deletions
+2 -1
View File
@@ -681,7 +681,8 @@ class CategoryCore extends ObjectModel
$id_lang = Context::getContext()->language->id;
$categories = new Collection('Category', $id_lang);
$categories->where((int)$this->nleft.' < nleft AND nright < '.(int)$this->nright);
$categories->where('nleft', '>', $this->nleft);
$categories->where('nright', '<', $this->nright);
return $categories;
}