mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
Fixed bug #534526, now my birthday won't show up as users board_startdates :D
git-svn-id: file:///svn/phpbb/trunk@2433 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
9b7b652679
commit
306d47a09b
1 changed files with 1 additions and 1 deletions
|
@ -1808,7 +1808,7 @@ if ( !empty($next) )
|
|||
//
|
||||
$sql = "SELECT MIN(user_regdate) AS oldest_time
|
||||
FROM " . USERS_TABLE . "
|
||||
WHERE user_regdate > 0";
|
||||
WHERE user_regdate > 0 AND user_id > 0";
|
||||
$result = query($sql, "Couldn't obtain oldest post time");
|
||||
|
||||
$row = $db->sql_fetchrow($result);
|
||||
|
|
Loading…
Add table
Reference in a new issue