1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Page: Breadcrumb fix for generated chapters lists when using default URLs. (not SEF)

This commit is contained in:
Cameron
2017-10-03 12:51:20 -07:00
parent fd35083546
commit dfb8435d58
2 changed files with 9 additions and 2 deletions

View File

@@ -56,6 +56,12 @@ class core_page_url extends eUrlConfig
switch ($route[0])
{
case 'book':
if(!empty($params['book_id']))
{
$params['id'] = $params['book_id'];
}
$url .= "bk=".intval($params['id']);
break;