1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

- fix two small errors i "introduced" a while back. ;)

git-svn-id: file:///svn/phpbb/trunk@5155 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2005-05-30 06:42:49 +00:00
parent 271e9caa8c
commit 6482d0e207
2 changed files with 5 additions and 5 deletions

View File

@@ -156,7 +156,7 @@ elseif ($pane == 'right')
if ($action == 'activate')
{
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_type = ' . USER_NORMAL . " WHERE user_id IN ($mark)"
$sql = 'UPDATE ' . USERS_TABLE . ' SET user_type = ' . USER_NORMAL . " WHERE user_id IN ($mark)";
$db->sql_query($sql);
}
else if ($action == 'delete')