mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 21:08:53 +00:00
[ticket/10939] Modified ucp_groups.php to not use $_FILES
PHPBB3-10939
This commit is contained in:
parent
a3b87f1e95
commit
83a53eb985
1 changed files with 3 additions and 2 deletions
|
@ -513,7 +513,8 @@ class ucp_groups
|
||||||
$data['height'] = request_var('height', '');
|
$data['height'] = request_var('height', '');
|
||||||
$delete = request_var('delete', '');
|
$delete = request_var('delete', '');
|
||||||
|
|
||||||
if (!empty($_FILES['uploadfile']['tmp_name']) || $data['uploadurl'] || $data['remotelink'])
|
$uploadfile = $request->file('uploadfile');
|
||||||
|
if (!empty($uploadfile['tmp_name']) || $data['uploadurl'] || $data['remotelink'])
|
||||||
{
|
{
|
||||||
// Avatar stuff
|
// Avatar stuff
|
||||||
$var_ary = array(
|
$var_ary = array(
|
||||||
|
@ -527,7 +528,7 @@ class ucp_groups
|
||||||
{
|
{
|
||||||
$data['user_id'] = "g$group_id";
|
$data['user_id'] = "g$group_id";
|
||||||
|
|
||||||
if ((!empty($_FILES['uploadfile']['tmp_name']) || $data['uploadurl']) && $can_upload)
|
if ((!empty($uploadfile['tmp_name']) || $data['uploadurl']) && $can_upload)
|
||||||
{
|
{
|
||||||
list($submit_ary['avatar_type'], $submit_ary['avatar'], $submit_ary['avatar_width'], $submit_ary['avatar_height']) = avatar_upload($data, $error);
|
list($submit_ary['avatar_type'], $submit_ary['avatar'], $submit_ary['avatar_width'], $submit_ary['avatar_height']) = avatar_upload($data, $error);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue