- Patch 6421 by TDobes: In the recent user.module and profile.module update, a

typo was introduced into xtemplate.theme which prevents the use (specifically,
  the ability to enable) comment pictures (formerly known as avatars).
4.5.x
Dries Buytaert 2004-03-12 21:27:54 +00:00
parent bba5102ed0
commit 144eacbd95
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function xtemplate_settings() {
$output .= form_group(t('Header settings'), $group);
$group = form_checkbox(t('Display pictures with posts'), 'xtemplate_picture_node', 1, variable_get('xtemplate_picture_node', 0), t('Display individualized pictures identifying users with posts they start.'));
$gourp .= form_checkbox(t('Display pictures with comments'), 'xtemplate_picture_comment', 1, variable_get('xtemplate_picture_comment', 0), t('Display individualized pictures identifying users with their comments.'));
$group .= form_checkbox(t('Display pictures with comments'), 'xtemplate_picture_comment', 1, variable_get('xtemplate_picture_comment', 0), t('Display individualized pictures identifying users with their comments.'));
$output .= form_group(t('Avatar settings'), $group);
return $output;