aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-06 19:56:52 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-06 19:56:52 +0200
commit25804eb8e8b17196116e233b2c8ad3b444cfb5ae (patch)
treeb2a6a333f645f8c537870eb2cafba779ea298633 /phpBB/includes/functions_posting.php
parent44005f338e227c10a21270456d181d56749d3f29 (diff)
downloadforums-25804eb8e8b17196116e233b2c8ad3b444cfb5ae.tar
forums-25804eb8e8b17196116e233b2c8ad3b444cfb5ae.tar.gz
forums-25804eb8e8b17196116e233b2c8ad3b444cfb5ae.tar.bz2
forums-25804eb8e8b17196116e233b2c8ad3b444cfb5ae.tar.xz
forums-25804eb8e8b17196116e233b2c8ad3b444cfb5ae.zip
[feature/soft-delete] Add test case for (soft)deleting the only post + fix
PHPBB3-9567
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index d9fbd84ce1..9cf7b59ad3 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1461,11 +1461,11 @@ function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $
}
// (Soft) delete the post
- if ($is_soft)
+ if ($is_soft && ($post_mode != 'delete_topic'))
{
phpbb_content_visibility::set_post_visibility(ITEM_DELETED, $post_id, $topic_id, $forum_id, $user->data['user_id'], time(), $softdelete_reason, ($data['topic_first_post_id'] == $post_id), ($data['topic_last_post_id'] == $post_id));
}
- else
+ else if (!$is_soft)
{
if (!delete_posts('post_id', array($post_id), false, false))
{
@@ -1502,7 +1502,6 @@ function delete_post($forum_id, $topic_id, $post_id, &$data, $is_soft = false, $
{
$topic_row = array();
phpbb_content_visibility::set_topic_visibility(ITEM_DELETED, $topic_id, $forum_id, $user->data['user_id'], time(), $softdelete_reason);
- phpbb_content_visibility::remove_topic_from_statistic($topic_id, $forum_id, $topic_row, $sql_data);
}
else
{