View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005611 | OXID eShop (all versions) | 4.04. Security | public | 2014-01-20 09:17 | 2014-03-11 11:25 |
| Reporter | tomas_liubinas | Assigned To | |||
| Priority | high | Severity | crash | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 4.7.11 / 5.0.11 | ||||
| Target Version | 4.7.12 / 5.0.12 | Fixed in Version | 4.7.11 / 5.0.11 | ||
| Summary | 0005611: Parameter is not converted to special chars | ||||
| Description | Passed parameter in some circumstances is not converted to special chars. | ||||
| Tags | No tags attached. | ||||
| Theme | Both | ||||
| Browser | All | ||||
| PHP Version | any | ||||
| Database Version | any | ||||
| related to | 0005404 | resolved | tomas_liubinas | Parameter is not converted to special chars |
|
|
In order to fix this problem basically two php files were changed: in Details::getTag() existing code: return oxConfig::getParameter("searchtag", 1); should be replaced to: return oxConfig::getParameter("searchtag", false); in Tag:getTag() existing code: $this->_sTag = oxConfig::getParameter("searchtag", 1); should be replaced to: $this->_sTag = oxConfig::getParameter("searchtag", false); |