diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2014-05-01 21:46:34 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2014-05-01 21:46:34 -0500 |
commit | 5c54cd6a45a130eb389edff946d413bc17aeecbe (patch) | |
tree | db6e350321078c40a47da9efc775daff5c78d3ec /phpBB/includes/mcp/mcp_queue.php | |
parent | 621023e4ae19345c2543bc259996b5bb2a354dd4 (diff) | |
parent | 5c33c201869f224af775c016f0281640a70e8a3a (diff) | |
download | forums-5c54cd6a45a130eb389edff946d413bc17aeecbe.tar forums-5c54cd6a45a130eb389edff946d413bc17aeecbe.tar.gz forums-5c54cd6a45a130eb389edff946d413bc17aeecbe.tar.bz2 forums-5c54cd6a45a130eb389edff946d413bc17aeecbe.tar.xz forums-5c54cd6a45a130eb389edff946d413bc17aeecbe.zip |
Merge remote-tracking branch 'remotes/Nicofuma/ticket/12445' into develop-ascraeus
# By Nicofuma
# Via Nicofuma
* remotes/Nicofuma/ticket/12445:
[ticket/12445] Change the formulation
[ticket/12445] Disapproved post: the name of the poster should be in logs
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 20e89a0199..f0a38db033 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -1059,7 +1059,7 @@ class mcp_queue if ($is_disapproving) { $l_log_message = ($log_data['type'] == 'topic') ? 'LOG_TOPIC_DISAPPROVED' : 'LOG_POST_DISAPPROVED'; - add_log('mod', $log_data['forum_id'], $log_data['topic_id'], $l_log_message, $log_data['post_subject'], $disapprove_reason); + add_log('mod', $log_data['forum_id'], $log_data['topic_id'], $l_log_message, $log_data['post_subject'], $disapprove_reason, $log_data['post_username']); } else { |