|
From: Paul S. O. <ps...@us...> - 2002-03-19 01:10:25
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv9995/includes
Modified Files:
usercp_register.php
Log Message:
Me getting irritated now ...
Index: usercp_register.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/usercp_register.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** usercp_register.php 18 Mar 2002 23:53:12 -0000 1.4
--- usercp_register.php 19 Mar 2002 01:10:21 -0000 1.5
***************
*** 480,484 ****
}
! if ( !($row = $db->sql_fetchrow($result) )
{
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
--- 480,484 ----
}
! if ( !($row = $db->sql_fetchrow($result)) )
{
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
***************
*** 488,492 ****
$sql = "SELECT MAX(group_id) AS total
FROM " . GROUPS_TABLE;
! if ( !($result = $db->sql_query($sql) ) )
{
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
--- 488,492 ----
$sql = "SELECT MAX(group_id) AS total
FROM " . GROUPS_TABLE;
! if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
|