diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-09 16:43:53 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-09 16:43:53 +0200 |
commit | 8683824ed324269403b0344e6a75a942a842b1cd (patch) | |
tree | 9bef28dd2eae33af6675a9fb583e64ee5acea124 /phpBB/includes/mcp | |
parent | b04b5dea36036f4b184a91c064b4e656b435ca08 (diff) | |
parent | 66397ae0e49755dcc0bdfd2052afc0290f39e4ec (diff) | |
download | forums-8683824ed324269403b0344e6a75a942a842b1cd.tar forums-8683824ed324269403b0344e6a75a942a842b1cd.tar.gz forums-8683824ed324269403b0344e6a75a942a842b1cd.tar.bz2 forums-8683824ed324269403b0344e6a75a942a842b1cd.tar.xz forums-8683824ed324269403b0344e6a75a942a842b1cd.zip |
Merge pull request #3934 from Zoddo/ticket/14181
[ticket/14181] Fix empty denial reason if the reason isn't translated
Diffstat (limited to 'phpBB/includes/mcp')
-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 0ac6ea748e..60c6e5d877 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -1241,7 +1241,7 @@ class mcp_queue continue; } - $post_data['disapprove_reason'] = ''; + $post_data['disapprove_reason'] = $disapprove_reason; if (isset($disapprove_reason_lang)) { // Okay we need to get the reason from the posters language |