From dd00ce06dd25ade4925a5eb020c3dc48dceca45f Mon Sep 17 00:00:00 2001 From: Jonathan Stanley Date: Sun, 6 May 2007 00:57:07 +0000 Subject: [PATCH] #10523 Just saw this one, whilst thinking about some other stuff... Now possible to select the subforum listing for styling by: a.subforum { foo: bar; } // both read and unread links ... and either specifically by: a.subforum.read { foo: bar; } // read links only a.subforum.unread { foo: bar; } // unread links only git-svn-id: file:///svn/phpbb/trunk@7480 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 6ae606c6a5..81bda16450 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -365,7 +365,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod $s_subforums_list = array(); foreach ($subforums_list as $subforum) { - $s_subforums_list[] = '' . $subforum['name'] . ''; + $s_subforums_list[] = '' . $subforum['name'] . ''; } $s_subforums_list = (string) implode(', ', $s_subforums_list); $catless = ($row['parent_id'] == $root_data['forum_id']) ? true : false;