diff options
author | RMcGirr83 <rmcgirr83@gmail.com> | 2010-12-20 07:58:37 -0500 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2010-12-21 20:44:20 +0100 |
commit | 3f27cb2ea78dd571591db6d0886395f313c9fe5e (patch) | |
tree | a421a06c89a1f6a860fbbc53ebdce407a21c715e | |
parent | b02cec86d40345f7ad28d0cca4e409766f0e65c2 (diff) | |
download | forums-3f27cb2ea78dd571591db6d0886395f313c9fe5e.tar forums-3f27cb2ea78dd571591db6d0886395f313c9fe5e.tar.gz forums-3f27cb2ea78dd571591db6d0886395f313c9fe5e.tar.bz2 forums-3f27cb2ea78dd571591db6d0886395f313c9fe5e.tar.xz forums-3f27cb2ea78dd571591db6d0886395f313c9fe5e.zip |
[ticket/9937] The feed icon displays on External links...which we don't want
PHPBB3-9937
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 2de7e1b169..7989b74c55 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -456,7 +456,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod 'S_LOCKED_FORUM' => ($row['forum_status'] == ITEM_LOCKED) ? true : false, 'S_LIST_SUBFORUMS' => ($row['display_subforum_list']) ? true : false, 'S_SUBFORUMS' => (sizeof($subforums_list)) ? true : false, - 'S_FEED_ENABLED' => ($config['feed_forum'] && !phpbb_optionget(FORUM_OPTION_FEED_EXCLUDE, $row['forum_options'])) ? true : false, + 'S_FEED_ENABLED' => ($config['feed_forum'] && !phpbb_optionget(FORUM_OPTION_FEED_EXCLUDE, $row['forum_options']) && $row['forum_type'] != FORUM_LINK) ? true : false, 'FORUM_ID' => $row['forum_id'], 'FORUM_NAME' => $row['forum_name'], |