View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003678 | OXID eShop (all versions) | 1.06. Search, Tags | public | 2012-03-06 11:55 | 2012-12-07 14:42 |
Reporter | updown | Assigned To | |||
Priority | high | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.5.8 revision 42471 | ||||
Fixed in Version | 4.5.9 revision 43186 | ||||
Summary | 0003678: Tag-Pagination in "Back to Article" is not converted to SEO-Link and is returning 404 | ||||
Description | When calling an article from a paginated tag-list, the "back to overview" link does not work on pages > 1. The reason is a missing encode on the page-link (see additional information). | ||||
Steps To Reproduce | tag-view with tags on several pages. Go to a page >1. Click on article. Click on "back to overview" in articleview. | ||||
Additional Information | Patch: file: views/oxlocator.php in: protected function _setTagLocatorData( $oLocatorTarget, $oCurrArticle ) find: $sPageNr = $this->_getPageNumber( $iPage ); $oTag->toListLink = $this->_makeLink( $oTag->link, $sPageNr ); replace with: if ( $myUtils->seoIsActive() && $iPage ) { $oTag->toListLink = oxSeoEncoderTag::getInstance()->getTagPageUrl( $oTag->sTag, $iPage ); } else { $oTag->toListLink = $this->_makeLink( $oTag->link, $this->_getPageNumber( $iPage ) ); } | ||||
Tags | Products, SEO, Tags | ||||
Theme | Both | ||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||
|
ofcourse it is the "back to overview"-link ("Zurück zur Übersicht"), not "back to article" |
|
the 404 is related to bugreport 0003677: https://bugs.oxid-esales.com/view.php?id=3677 |