diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-03 17:41:21 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-03 17:41:21 +0000 |
commit | c93a40ed0c8d2570dfc82719a3b56590cf7a92f8 (patch) | |
tree | b9cf8d7a9dbc4bfcaed7212e3d844c11ae3fce49 /phpBB/includes/acp/acp_groups.php | |
parent | b231c4234c513b3d9228306cf4c221e323456363 (diff) | |
download | forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.gz forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.bz2 forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.xz forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.zip |
Fixing the following bugs:
#8444 (language dependent buttons no longer include the dimensions to allow bigger/smaller translated images)
#8414
#8396
#8388
#8216
thanks to bartvb and kellanved for providing possible fixes...
git-svn-id: file:///svn/phpbb/trunk@7114 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_groups.php')
-rw-r--r-- | phpBB/includes/acp/acp_groups.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_groups.php b/phpBB/includes/acp/acp_groups.php index c35d2b5700..1ea9b8b7d3 100644 --- a/phpBB/includes/acp/acp_groups.php +++ b/phpBB/includes/acp/acp_groups.php @@ -559,8 +559,8 @@ class acp_groups 'S_GROUP_OPTIONS' => group_select_options(false, false, (($user->data['user_type'] == USER_FOUNDER) ? false : 0)), 'AVATAR_IMAGE' => $avatar_img, 'AVATAR_MAX_FILESIZE' => $config['avatar_filesize'], - 'GROUP_AVATAR_WIDTH' => (isset($group_row['group_avatar_width'])) ? $group_row['group_avatar_width'] : '', - 'GROUP_AVATAR_HEIGHT' => (isset($group_row['group_avatar_height'])) ? $group_row['group_avatar_height'] : '', + 'AVATAR_WIDTH' => (isset($group_row['group_avatar_width'])) ? $group_row['group_avatar_width'] : '', + 'AVATAR_HEIGHT' => (isset($group_row['group_avatar_height'])) ? $group_row['group_avatar_height'] : '', 'GROUP_TYPE_FREE' => GROUP_FREE, 'GROUP_TYPE_OPEN' => GROUP_OPEN, |