View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001027 | OXID eShop (all versions) | 4.06. Language and translations | public | 2009-06-18 09:29 | 2009-06-22 15:21 |
| Reporter | LG | Assigned To | |||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 4.1.2 revision 18998 | ||||
| Fixed in Version | 4.1.4 revision 21266 | ||||
| Summary | 0001027: Wrong language is marked as selected if DE language is inactive | ||||
| Description | Hi, The problem is with language list on shop page. Wrong language is marked as selected if you have any inactive languages. In my case I marked DE as inactive language. Just take a look at oxlang.php: if ( $blOnlyActive && is_array($aLangParams) ) { //skipping non active languages if ( !$aLangParams[$key]['active'] ) { continue; } } You should change $i value before continuing: if ( !$aLangParams[$key]['active'] ) { ++$i; continue; } | ||||
| Tags | No tags attached. | ||||
| Theme | |||||
| Browser | All | ||||
| PHP Version | 5.2.6 | ||||
| Database Version | 5.0.33 | ||||