Fixed #457051 - USER_GROUPS_TABLE error

git-svn-id: file:///svn/phpbb/trunk@949 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-08-31 00:08:36 +00:00
parent c32f20bc52
commit 6600dbad3a

View file

@ -625,7 +625,7 @@ else if($HTTP_POST_VARS[submit] && $HTTP_POST_VARS['user_id'])
WHERE user_id = $user_id";
if( $result = $db->sql_query($sql) )
{
$sql = "DELETE FROM " . USER_GROUPS_TABLE . "
$sql = "DELETE FROM " . USER_GROUP_TABLE . "
WHERE user_id = $user_id";
if( $result = $db->sql_query($sql) )
{
@ -733,7 +733,8 @@ else
);
$template->pparse('body');
include('page_footer_admin.'.$phpEx);
}
include('page_footer_admin.'.$phpEx);
?>