mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fixed #457051 - USER_GROUPS_TABLE error
git-svn-id: file:///svn/phpbb/trunk@949 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
c32f20bc52
commit
6600dbad3a
1 changed files with 3 additions and 2 deletions
|
@ -625,7 +625,7 @@ else if($HTTP_POST_VARS[submit] && $HTTP_POST_VARS['user_id'])
|
||||||
WHERE user_id = $user_id";
|
WHERE user_id = $user_id";
|
||||||
if( $result = $db->sql_query($sql) )
|
if( $result = $db->sql_query($sql) )
|
||||||
{
|
{
|
||||||
$sql = "DELETE FROM " . USER_GROUPS_TABLE . "
|
$sql = "DELETE FROM " . USER_GROUP_TABLE . "
|
||||||
WHERE user_id = $user_id";
|
WHERE user_id = $user_id";
|
||||||
if( $result = $db->sql_query($sql) )
|
if( $result = $db->sql_query($sql) )
|
||||||
{
|
{
|
||||||
|
@ -733,7 +733,8 @@ else
|
||||||
);
|
);
|
||||||
$template->pparse('body');
|
$template->pparse('body');
|
||||||
|
|
||||||
include('page_footer_admin.'.$phpEx);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
include('page_footer_admin.'.$phpEx);
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Add table
Reference in a new issue