View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001759 | OXID eShop (all versions) | 1.01. Products (product, categories, manufacturer, promotions etc.) | public | 2010-04-12 10:57 | 2012-12-07 14:13 |
| Reporter | Oliver Storm | Assigned To | |||
| Priority | high | Severity | major | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 4.3.0 revision 26948 | ||||
| Fixed in Version | 4.3.2 revision 27884 | ||||
| Summary | 0001759: Categories: DB-Field Sorting does not work | ||||
| Description | Hai, Sorting: Using numbers to define a (user-)specific sort does not work anymore. Rgds Olli | ||||
| Tags | Category | ||||
| Theme | |||||
| Browser | All | ||||
| PHP Version | any | ||||
| Database Version | any | ||||
|
|
hi, fix. set line 483, oxcategorylist: foreach (array_keys($aParents) as $sParent) { if (isset($this->_aArray[$sParentId])) { $this->_aArray[$sParent]->sortSubCats(); } } to: foreach (array_keys($aParents) as $sParent) { if (isset($this->_aArray[$sParent])) { $this->_aArray[$sParent]->sortSubCats(); } } it's a typo in the if statement, and "$sParentId" is from an earlier loop. |
|
|
fixed as proposed |