for information, if you are somme problems with the upgrade of phpBB 2.0.17, it's because the modification of MOD Large groupe fix, who is under :
- Code: Select all
#
#-----[ OPEN ]------------------------------------------------
#
admin/admin_ug_auth.php
#
#-----[ FIND ]------------------------------------------------
#
'USER_GROUP_MEMBERSHIPS' => $lang['Group_memberships'] . ' : ' . $t_usergroup_list)
#
#-----[ REPLACE WITH ]------------------------------------------------
#
'USER_GROUP_MEMBERSHIPS' => sprintf($lang['Group_memberships'],$count_ug_info['total']) . ' : ' . $t_usergroup_list)
Then, in upgrade of phpBB 2.0.17, it's requiert this :
- Code: Select all
#
#-----[ OPEN ]------------------------------------------------
#
admin/admin_ug_auth.php
#
#-----[ FIND ]---------------------------------------------
# Line 911
'GROUP_MEMBERSHIP' => $lang['Usergroup_members'] . ' : ' . $t_usergroup_list)
#
#-----[ REPLACE WITH ]---------------------------------------------
#
'GROUP_MEMBERSHIP' => $lang['Usergroup_members'] . ' : ' . $t_usergroup_list . '<br />' . $lang['Pending_members'] . ' : ' . $t_pending_list)
Make this, in the place :
- Code: Select all
#
#-----[ OPEN ]------------------------------------------------
#
admin/admin_ug_auth.php
#
#-----[ FIND ]---------------------------------------------
# Line 911
'USER_GROUP_MEMBERSHIPS' => sprintf($lang['Group_memberships'],$count_ug_info['total']) . ' : ' . $t_usergroup_list)
#
#-----[ REPLACE WITH ]---------------------------------------------
#
'GROUP_MEMBERSHIP' => sprintf($lang['Usergroup_members'],$count_ug_info['total']) . ' : ' . $t_usergroup_list . '<br />' . $lang['Pending_members'] . ' : ' . $t_pending_list)
Bye.

