mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Me getting irritated now ...
git-svn-id: file:///svn/phpbb/trunk@2342 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
654e5151cf
commit
913562743e
1 changed files with 2 additions and 2 deletions
|
@ -479,7 +479,7 @@ if ( isset($HTTP_POST_VARS['submit']) )
|
|||
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
|
||||
}
|
||||
|
||||
if ( !($row = $db->sql_fetchrow($result) )
|
||||
if ( !($row = $db->sql_fetchrow($result)) )
|
||||
{
|
||||
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
|
||||
}
|
||||
|
@ -487,7 +487,7 @@ if ( isset($HTTP_POST_VARS['submit']) )
|
|||
|
||||
$sql = "SELECT MAX(group_id) AS total
|
||||
FROM " . GROUPS_TABLE;
|
||||
if ( !($result = $db->sql_query($sql) ) )
|
||||
if ( !($result = $db->sql_query($sql)) )
|
||||
{
|
||||
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue