mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-15 06:06:32 +02:00
Next ID didn't need the + 1
git-svn-id: file:///svn/phpbb/trunk@324 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -346,7 +346,7 @@ class sql_db
|
||||
$temp_result = @pg_fetch_array($temp_q_id, 0, PGSQL_ASSOC);
|
||||
if($temp_result)
|
||||
{
|
||||
return $temp_result['last_value']+1;
|
||||
return $temp_result['last_value'];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user