diff options
author | Gaëtan Muller <m.gaetan89@gmail.com> | 2015-02-03 20:56:48 +0100 |
---|---|---|
committer | Gaëtan Muller <m.gaetan89@gmail.com> | 2015-02-03 20:56:48 +0100 |
commit | 52446c8327426c59da74257885fd09591c9e1fb3 (patch) | |
tree | 6fc334e235dbe4bc3738a3901e8bad1831618a24 /phpBB/includes/ucp | |
parent | abcb2680eec86dc8016c489ebc7362e29be9e4df (diff) | |
download | forums-52446c8327426c59da74257885fd09591c9e1fb3.tar forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.gz forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.bz2 forums-52446c8327426c59da74257885fd09591c9e1fb3.tar.xz forums-52446c8327426c59da74257885fd09591c9e1fb3.zip |
[ticket/13455] Remove `request_var()` references from comments
PHPBB3-13455
Diffstat (limited to 'phpBB/includes/ucp')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_compose.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php index 72fcb3c7a6..0064fb89fc 100644 --- a/phpBB/includes/ucp/ucp_pm_compose.php +++ b/phpBB/includes/ucp/ucp_pm_compose.php @@ -473,7 +473,7 @@ function compose_pm($id, $mode, $action, $user_folders = array()) if ($action == 'delete') { // Folder id has been determined by the SQL Statement - // $folder_id = request_var('f', PRIVMSGS_NO_BOX); + // $folder_id = $request->variable('f', PRIVMSGS_NO_BOX); // Do we need to confirm ? if (confirm_box(true)) @@ -1379,7 +1379,7 @@ function handle_message_list_actions(&$address_list, &$error, $remove_u, $remove } /** -* Build the hidden field for the recipients. Needed, as the variable is not read via request_var. +* Build the hidden field for the recipients. Needed, as the variable is not read via $request->variable(). */ function build_address_field($address_list) { |