1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Revert "Fix: news category breadcrumbs"

This reverts commit 6c2e2efc22b489f4f6c338da50ebd670b77de959.
This commit is contained in:
Nick Liu 2023-02-19 23:40:33 +01:00
parent 4800e4ccbb
commit 92bb0519d3
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637

View File

@ -107,7 +107,7 @@ class news_front
$itemName = e107::getParser()->toHTML($this->currentRow['news_title'],true, 'TITLE');
$breadcrumb[] = array('text'=> $categoryName, 'url'=>e107::getUrl()->create('news/list/category', array('id'=>$this->currentRow['news_category'])));
$breadcrumb[] = array('text'=> $categoryName, 'url'=>e107::getUrl()->create('news/list/category', $this->currentRow));
$breadcrumb[] = array('text'=> $itemName, 'url'=> null);
break;