#185209 by ChrisKennedy: only provide picture deletion option if there is an actual user picture present

6.x
Gábor Hojtsy 2007-11-06 08:53:52 +00:00
parent 856ae39d35
commit 235621a072
1 changed files with 1 additions and 1 deletions

View File

@ -1349,7 +1349,7 @@ function user_edit_form(&$form_state, $uid, $edit, $register = FALSE) {
if (variable_get('user_pictures', 0) && !$register) {
$form['picture'] = array('#type' => 'fieldset', '#title' => t('Picture'), '#weight' => 1);
$picture = theme('user_picture', (object)$edit);
if ($picture) {
if ($edit['picture']) {
$form['picture']['current_picture'] = array('#value' => $picture);
$form['picture']['picture_delete'] = array('#type' => 'checkbox', '#title' => t('Delete picture'), '#description' => t('Check this box to delete your current picture.'));
}