aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/message_parser.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-04-18 13:07:19 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-04-18 13:07:19 +0000
commit2bd1ced3396c0eed0d05e8510de5cef691fd9321 (patch)
treebc9d2bbc4d2a482658c13bf563afe8a06dddab2a /phpBB/includes/message_parser.php
parent25015ecc0b27945aebde5235a93c125a3f3984d9 (diff)
downloadforums-2bd1ced3396c0eed0d05e8510de5cef691fd9321.tar
forums-2bd1ced3396c0eed0d05e8510de5cef691fd9321.tar.gz
forums-2bd1ced3396c0eed0d05e8510de5cef691fd9321.tar.bz2
forums-2bd1ced3396c0eed0d05e8510de5cef691fd9321.tar.xz
forums-2bd1ced3396c0eed0d05e8510de5cef691fd9321.zip
some arrangements...
git-svn-id: file:///svn/phpbb/trunk@3883 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r--phpBB/includes/message_parser.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index 2f98b39a67..87e4a0e356 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -549,11 +549,11 @@ class parse_message
// delete selected attachment
if ($actual_id_list[$i] == '-1')
{
- phpbb_unlink($actual_list[$i]);
+ phpbb_unlink($actual_list[$i], 'file', $config['use_ftp_upload']);
if ($actual_thumbnail_list[$i] == 1)
{
- phpbb_unlink('t_' . $actual_list[$i], 'thumbnail');
+ phpbb_unlink('t_' . $actual_list[$i], 'thumbnail', $config['use_ftp_upload']);
}
}
else