diff options
author | Cullen Walsh <ckwalsh@phpbb.com> | 2011-04-19 11:19:47 -0700 |
---|---|---|
committer | Cullen Walsh <ckwalsh@cullenwalsh.com> | 2012-03-18 22:20:45 +0000 |
commit | 019b9bc0735bb74d46f4e87fe006328970211dad (patch) | |
tree | 09bbb555423d8651b50d8f71c8078e84b9a7470c /phpBB/includes/ucp/ucp_profile.php | |
parent | f02f6216867db63f6ad2659b0b702b81b07a875c (diff) | |
download | forums-019b9bc0735bb74d46f4e87fe006328970211dad.tar forums-019b9bc0735bb74d46f4e87fe006328970211dad.tar.gz forums-019b9bc0735bb74d46f4e87fe006328970211dad.tar.bz2 forums-019b9bc0735bb74d46f4e87fe006328970211dad.tar.xz forums-019b9bc0735bb74d46f4e87fe006328970211dad.zip |
[feature/avatars] Implement avatar uploads for ucp
As above, implement avatar uploads from local and remote sources in
the UCP.
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 5d7dbe12d8..a815ec7987 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -570,7 +570,7 @@ class ucp_profile { $result = $avatar->handle_form($template, $user->data, $error, true); - if (empty($error)) + if ($result && empty($error)) { // Success! Lets save the result in the database $result['user_avatar_type'] = $driver; |