aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-10-12 20:05:50 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-10-12 20:05:50 +0000
commitb6546a148792649d88b0e99d1b3422709559bb15 (patch)
tree901e7c0d3ac730c16bad07d0c68b75a003eaba48 /phpBB/includes
parenta2ac86744f002d8fd18b20352347da2f3a3639a7 (diff)
downloadforums-b6546a148792649d88b0e99d1b3422709559bb15.tar
forums-b6546a148792649d88b0e99d1b3422709559bb15.tar.gz
forums-b6546a148792649d88b0e99d1b3422709559bb15.tar.bz2
forums-b6546a148792649d88b0e99d1b3422709559bb15.tar.xz
forums-b6546a148792649d88b0e99d1b3422709559bb15.zip
Censor last post topic [#4714]
git-svn-id: file:///svn/phpbb/trunk@6490 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index ec5c87394e..a5579c40f5 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -348,7 +348,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod
'FORUM_IMAGE' => ($row['forum_image']) ? '<img src="' . $phpbb_root_path . $row['forum_image'] . '" alt="' . $user->lang[$folder_alt] . '" />' : '',
'FORUM_IMAGE_SRC' => ($row['forum_image']) ? $phpbb_root_path . $row['forum_image'] : '',
'SUBFORUMS' => $subforums_list,
- 'LAST_POST_SUBJECT' => $last_post_subject,
+ 'LAST_POST_SUBJECT' => censor_text($last_post_subject),
'LAST_POST_TIME' => $last_post_time,
'LAST_POSTER' => $last_poster,
'LAST_POSTER_COLOUR' => $last_poster_colour,