From ba18155c345b66d825804219d1b2e8db0e9860ec Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 6 Dec 2013 23:26:58 -0800 Subject: [PATCH] Fix for broken news category URL in news_categories_menu --- e107_core/url/news/url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_core/url/news/url.php b/e107_core/url/news/url.php index 120231520..0ac32ee9a 100644 --- a/e107_core/url/news/url.php +++ b/e107_core/url/news/url.php @@ -134,7 +134,7 @@ class core_news_url extends eUrlConfig } else { - $url .= 'list.'.$params['category_id'].'.'.$page; + $url .= 'list.'.$params['id'].'.'.$page; // 'category_id' would break news_categories_menu. } break;