View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005720 | OXID eShop (all versions) | 4.11. Image handling | public | 2014-04-01 18:14 | 2016-06-08 14:06 |
Reporter | sbauer | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.8.4 / 5.1.4 | ||||
Fixed in Version | 4.10.0 / 5.3.0 | ||||
Summary | 0005720: duble slash in imagepaths if you use sAltImageUrl | ||||
Description | There is added a slash by hard code in the method getAltImageUrl() in class oxPictureHandler (line 326) $sAltUrl .= '/'.$sFilePath.$sFile; This caused problems. It should be done like this: $sAltUrl = oxRegistry::getUtils()->checkUrlEndingSlash($sAltUrl).$sFilePath.$sFile; So there will be only added a slash if it's required. | ||||
Tags | No tags attached. | ||||
Theme | All | ||||
Browser | All | ||||
PHP Version | Not defined | ||||
Database Version | Not defined | ||||
|
Reminder sent to: sbauer Thank you very much for your bug report. As we saw, you already submitted a complete solution for this issue. If you feel fancy, you'd also have the possibility to contribute your changes directly to our GitHub repository on https://github.com/OXID-eSales/oxideshop_ce/. Please leave a note there with the bug number you fixed so we can close this issue in the bug tracker." |
|
https://github.com/OXID-eSales/oxideshop_ce/pull/393 |
|
Thank you Michael. The pull request was just merged to master and ported to 5.3 |