View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002575 | OXID eShop (all versions) | 2. ----- eShop backend (admin) ----- | public | 2011-03-02 10:33 | 2011-05-10 13:04 |
Reporter | [email protected] | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.4.0 revision 28699 | ||||
Fixed in Version | 4.4.6 revision 32697 | ||||
Summary | 0002575: Then adding param: to $this->sAdminSSLURL in cofing site don't redirect correctly | ||||
Description | So problem eas that site didn't redirect correctly to parameter sAdminSSLURL what i did i changed oxconfig::getSslShopUrl() public function getSslShopUrl( $iLang = null ) { if($this->isAdmin()) { if ( ( $sAdminSSLURL = $this->getConfigParam( 'sAdminSSLURL' ) ) ) { $sAdminSSLURL = oxUtils::getInstance()->checkUrlEndingSlash( $sAdminSSLURL ); $this->setConfigParam('sAdminDir', ''); return $sAdminSSLURL; } } // 0000680 per language another URL $iLang = isset( $iLang ) ? $iLang : oxLang::getInstance()->getBaseLanguage(); $aLanguageSSLURLs = $this->getConfigParam( 'aLanguageSSLURLs' ); if ( isset( $iLang ) && isset( $aLanguageSSLURLs[$iLang] ) && !empty( $aLanguageSSLURLs[$iLang] ) ) { $aLanguageSSLURLs[$iLang] = oxUtils::getInstance()->checkUrlEndingSlash( $aLanguageSSLURLs[$iLang] ); return $aLanguageSSLURLs[$iLang]; } //mall mode if ( ( $sMallSSLShopURL = $this->getConfigParam( 'sMallSSLShopURL' ) ) ) { $sMallSSLShopURL = oxUtils::getInstance()->checkUrlEndingSlash( $sMallSSLShopURL ); return $sMallSSLShopURL; } if ( ( $sMallShopURL = $this->getConfigParam( 'sMallShopURL' ) ) ) { $sMallShopURL = oxUtils::getInstance()->checkUrlEndingSlash( $sMallShopURL ); return $sMallShopURL; } //normal section if ( ( $sSSLShopURL = $this->getConfigParam( 'sSSLShopURL' ) ) ) { return $sSSLShopURL; } return $this->getShopUrl( $iLang ); } | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||