View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002772 | OXID eShop (all versions) | 1. ----- eShop frontend ----- | public | 2011-04-20 13:05 | 2012-12-10 14:37 |
Reporter | Moehlis | Assigned To | |||
Priority | urgent | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.5.0 revision 34568 | ||||
Fixed in Version | 4.5.10 revision 44222 | ||||
Summary | 0002772: ssl alt img dir doesnt work | ||||
Description | Using alternatve image server and setting "sSSLAltImageDir" in config.inc.php will be ignored in most cases. Bugfix has to be done in oxconfig.php:getPictureUrl() wrong: if ( $this->isSsl() && $blSSL && $sSslAltUrl = $this->getConfigParam( 'sSSLAltImageDir' ) ) { correct: if ( ($this->isSsl() || $blSSL) && $sSslAltUrl = $this->getConfigParam( 'sSSLAltImageDir' ) ) { $blSSL is a parameter of the getPictureUrl method that is null in most cases. So checking if the shop is on ssl AND the parameter is set doesnt make any sense | ||||
Tags | No tags attached. | ||||
Theme | Both | ||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||