diff options
author | brunoais <brunoaiss@gmail.com> | 2014-09-19 08:36:00 +0100 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-09-19 08:36:00 +0100 |
commit | d4938e34b03f6738646dfd8bd15731adc73f5bc9 (patch) | |
tree | 65c1b2550210bc6ee776341cbd6750d5c6d2f2bf | |
parent | 1e1efa294ebfc3802cb072c1ef799b676f796aff (diff) | |
download | forums-d4938e34b03f6738646dfd8bd15731adc73f5bc9.tar forums-d4938e34b03f6738646dfd8bd15731adc73f5bc9.tar.gz forums-d4938e34b03f6738646dfd8bd15731adc73f5bc9.tar.bz2 forums-d4938e34b03f6738646dfd8bd15731adc73f5bc9.tar.xz forums-d4938e34b03f6738646dfd8bd15731adc73f5bc9.zip |
[ticket/12929] Fixing event comment block and variable
PHPBB3-12929
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_compose.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php index 0458135e03..89ba77e7cf 100644 --- a/phpBB/includes/ucp/ucp_pm_compose.php +++ b/phpBB/includes/ucp/ucp_pm_compose.php @@ -240,13 +240,13 @@ function compose_pm($id, $mode, $action, $user_folders = array()) * @var string sql String with the query to be executed * @var array forum_list List of forums that contain the posts * @var int visibility_const Integer with one of the possible ITEM_* constant values - * @var int topic_id topic_id in the page request + * @var int msg_id topic_id in the page request * @var int to_user_id The id of whom the message is to * @var int to_group_id The id of the group whom the message is to * @var bool submit Whether the user is sending the PM or not * @var bool preview Whether the user is previewing the PM or not - * @var bool action One of: post, reply, quote, forward, quotepost, edit, delete, smilies - * @var bool delete If deleting message + * @var string action One of: post, reply, quote, forward, quotepost, edit, delete, smilies + * @var bool delete Whether the user is deleting the PM * @var int reply_to_all Value of reply_to_all request variable. * @var string limit_time_sql String with the SQL code to limit the time interval of the post (Note: May be empty string) * @var string sort_order_sql String with the ORDER BY SQL code used in this query @@ -256,7 +256,7 @@ function compose_pm($id, $mode, $action, $user_folders = array()) 'sql', 'forum_list', 'visibility_const', - 'topic_id', + 'msg_id', 'to_user_id', 'to_group_id', 'submit', |