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

Issue #2053 - possible fix for sub-forum link.

This commit is contained in:
Cameron
2016-11-25 16:04:19 -08:00
parent b2cd818a90
commit 1ffa7e5d26

View File

@@ -475,7 +475,7 @@
function sc_sub_forumtitle()
{
$forumName = e107::getParser()->toHTML($this->var['forum_name'], true);
return "<a href='" . e107::getUrl()->create('forum/forum/view', $this->var) . "'>{$forumName}</a>";
return "<a href='" . e107::url('forum', 'forum', $this->var) . "'>".$forumName."</a>";
}