From: Meik S. <acy...@ph...> - 2009-09-17 07:53:21
|
Author: acydburn Date: Thu Sep 17 08:52:35 2009 New Revision: 10155 Log: Remove duplicate S_DISPLAY_GALLERY key from ucp_groups. Regression from r9757 Modified: branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_groups.php Modified: branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_groups.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_groups.php (original) --- branches/phpBB-3_0_0/phpBB/includes/ucp/ucp_groups.php Thu Sep 17 08:52:35 2009 *************** *** 708,714 **** 'S_UPLOAD_AVATAR_FILE' => ($config['allow_avatar'] && $config['allow_avatar_upload'] && $can_upload) ? true : false, 'S_UPLOAD_AVATAR_URL' => ($config['allow_avatar'] && $config['allow_avatar_remote_upload'] && $can_upload) ? true : false, 'S_LINK_AVATAR' => ($config['allow_avatar'] && $config['allow_avatar_remote']) ? true : false, - 'S_DISPLAY_GALLERY' => ($config['allow_avatar'] && $config['allow_avatar_local']) ? true : false, 'ERROR_MSG' => (sizeof($error)) ? implode('<br />', $error) : '', 'GROUP_RECEIVE_PM' => (isset($group_row['group_receive_pm']) && $group_row['group_receive_pm']) ? ' checked="checked"' : '', --- 708,713 ---- |