Skip to content

Commit

Permalink
Fix incorrect config_name in portal_recent.php
Browse files Browse the repository at this point in the history
  • Loading branch information
marc1706 committed May 14, 2012
1 parent 9f83508 commit 7fe2d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion root/portal/modules/portal_recent.php
Expand Up @@ -65,7 +65,7 @@ public function get_template_center($module_id)
{
$exclude_forums = explode(',', $config['board3_recent_forum_' . $module_id]);

$sql_where = ' AND ' . $db->sql_in_set('forum_id', array_map('intval', $exclude_forums), ($config['board3_exclude_forums_' . $module_id]) ? true : false);
$sql_where = ' AND ' . $db->sql_in_set('forum_id', array_map('intval', $exclude_forums), ($config['board3_recent_exclude_forums_' . $module_id]) ? true : false);
}

// Get a list of forums the user cannot read
Expand Down

0 comments on commit 7fe2d48

Please sign in to comment.