Cannot remove/replace own picture in social network bug fixed see #3348

skala
Julio Montoya 14 years ago
parent 851547fa21
commit 68a1830e4c
  1. 7
      main/auth/profile.php

@ -607,9 +607,8 @@ if ($form->validate()) {
$user_data['picture_uri'] = $new_picture;
$_SESSION['image_uploaded'] = 'success';
}
}
} elseif (!empty($user_data['remove_picture'])) {
// remove existing picture if asked
elseif (!empty($user_data['remove_picture'])) {
UserManager::delete_user_picture(api_get_user_id());
$user_data['picture_uri'] = '';
}
@ -658,14 +657,14 @@ if ($form->validate()) {
//Only update values that are request by the "profile" setting
$profile_list = api_get_setting('profile');
$available_values_to_modify = array();
foreach($profile_list as $key => $status) {
if ($status == 'true') {
if ($key == 'name') {
$available_values_to_modify[] = 'firstname';
$available_values_to_modify[] = 'lastname';
} elseif ($key == 'picture') {
$available_values_to_modify[] = 'picture_uri';
} else {
$available_values_to_modify[] = $key;
}

Loading…
Cancel
Save