diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2003-09-09 07:02:57 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-09-09 07:02:57 +0000 |
| commit | a363e8dcdb52558366d6242caf3d22b93cb8ce09 (patch) | |
| tree | b5fed98e5b7e96c019073b70b38fa55d3945ef71 /phpBB/includes/functions_display.php | |
| parent | 08161e09e21b0e002325550db8bf653a72c8d362 (diff) | |
| download | forums-a363e8dcdb52558366d6242caf3d22b93cb8ce09.tar forums-a363e8dcdb52558366d6242caf3d22b93cb8ce09.tar.gz forums-a363e8dcdb52558366d6242caf3d22b93cb8ce09.tar.bz2 forums-a363e8dcdb52558366d6242caf3d22b93cb8ce09.tar.xz forums-a363e8dcdb52558366d6242caf3d22b93cb8ce09.zip | |
fixed censoring (quote post, word boundaries, attachment comments)
git-svn-id: file:///svn/phpbb/trunk@4492 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
| -rw-r--r-- | phpBB/includes/functions_display.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 9c6d0fd844..e48249bdfc 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -290,10 +290,17 @@ function display_forums($root_data = '', $display_moderators = TRUE) function display_attachments($attachment_data, &$update_count, $force_physical = false) { global $extensions, $template; - global $config, $user, $phpbb_root_path, $phpEx, $SID; + global $config, $user, $phpbb_root_path, $phpEx, $SID, $censors; + if (empty($censors)) + { + $censors = array(); + obtain_word_list($censors); + } + if (empty($extensions) || !is_array($extensions)) { + $extensions = array(); obtain_attach_extensions($extensions); } @@ -323,7 +330,7 @@ function display_attachments($attachment_data, &$update_count, $force_physical = $filesize = ($filesize >= 1048576) ? round((round($filesize / 1048576 * 100) / 100), 2) : (($filesize >= 1024) ? round((round($filesize / 1024 * 100) / 100), 2) : $filesize); $display_name = $attachment['real_filename']; - $comment = str_replace("\n", '<br />', $attachment['comment']); + $comment = (sizeof($censors)) ? preg_replace($censors['match'], $censors['replace'], str_replace("\n", '<br />', $attachment['comment'])) : str_replace("\n", '<br />', $attachment['comment']); $denied = FALSE; |
