aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-30 23:04:02 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-30 23:04:02 +0200
commitbe52ea882ad55af8bd8a59814b11488025fb3563 (patch)
tree4fe84ac9dde88730fefc7a2b045e70255a5e11be /phpBB/includes/functions_posting.php
parent9f87c497fe25611ddd2f6963ce38b7edad876de3 (diff)
parent70f313eb4ff9481b6a3a4a81f1392e37608d4435 (diff)
downloadforums-be52ea882ad55af8bd8a59814b11488025fb3563.tar
forums-be52ea882ad55af8bd8a59814b11488025fb3563.tar.gz
forums-be52ea882ad55af8bd8a59814b11488025fb3563.tar.bz2
forums-be52ea882ad55af8bd8a59814b11488025fb3563.tar.xz
forums-be52ea882ad55af8bd8a59814b11488025fb3563.zip
Merge pull request #2357 from Nicofuma/ticket/11942
[ticket/11942] Delete post/topic reason should be added to logs * Nicofuma/ticket/11942: [ticket/11942] Don't change the reason to '' when hard deleting [ticket/11942] Don't show the checkbox if the post is already soft-deleted [ticket/11942] Remove useless IF in templates [ticket/11942] Apply the modifications to subsilver [ticket/11942] Always display delete reason [ticket/11942] Edits messages [ticket/11942] Change the formulation [ticket/11942] Adding the reason to hard deleted topic/post [ticket/11942] Delete post/topic reason should be added to logs
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index e157a2bd0f..d4e7fecbff 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1657,7 +1657,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
if ($user->data['user_id'] != $poster_id)
{
$log_subject = ($subject) ? $subject : $data['topic_title'];
- add_log('mod', $data['forum_id'], $data['topic_id'], 'LOG_POST_EDITED', $log_subject, (!empty($username)) ? $username : $user->lang['GUEST']);
+ add_log('mod', $data['forum_id'], $data['topic_id'], 'LOG_POST_EDITED', $log_subject, (!empty($username)) ? $username : $user->lang['GUEST'], $data['post_edit_reason']);
}
if (!isset($sql_data[POSTS_TABLE]['sql']))