diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-07 22:49:48 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-07 23:02:07 +0100 |
commit | 023d7a972dd5c279e0b0b24801f9e53e7865d39a (patch) | |
tree | 441a940978d677ff310b951f664043ddb7726462 /phpBB/includes/ucp/ucp_profile.php | |
parent | 8867cb60b1f7074c9f83c0403e5259148da65204 (diff) | |
download | forums-023d7a972dd5c279e0b0b24801f9e53e7865d39a.tar forums-023d7a972dd5c279e0b0b24801f9e53e7865d39a.tar.gz forums-023d7a972dd5c279e0b0b24801f9e53e7865d39a.tar.bz2 forums-023d7a972dd5c279e0b0b24801f9e53e7865d39a.tar.xz forums-023d7a972dd5c279e0b0b24801f9e53e7865d39a.zip |
[feature/avatars] Remove $request property and pass as argument if needed
Remove the $request property from the phpbb_avatar_driver class and rather
pass it as function argument if it's needed in a function. Currently this
is only the case for the class methods prepare_form() and process_form().
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 36d59e7854..518ad9d917 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -576,7 +576,7 @@ class ucp_profile if (in_array($driver_name, $avatar_drivers) && !$request->is_set_post('avatar_delete')) { $driver = $phpbb_avatar_manager->get_driver($driver_name); - $result = $driver->process_form($template, $avatar_data, $error); + $result = $driver->process_form($request, $template, $avatar_data, $error); if ($result && empty($error)) { @@ -641,7 +641,7 @@ class ucp_profile 'avatar' => $driver->get_template_name(), )); - if ($driver->prepare_form($template, $avatar_data, $error)) + if ($driver->prepare_form($request, $template, $avatar_data, $error)) { $driver_name = $phpbb_avatar_manager->prepare_driver_name($current_driver); $driver_upper = strtoupper($driver_name); |