mirror of
https://github.com/e107inc/e107.git
synced 2025-04-15 18:14:07 +02:00
Issue #1373 Possible fix for forum posts not displaying.
This commit is contained in:
parent
f2ee4ff72c
commit
9470d5184b
@ -206,10 +206,13 @@ elseif ($action == 'forums')
|
||||
$vars = new e_vars();
|
||||
|
||||
$userposts_forum_table_string = '';
|
||||
while(true)
|
||||
while($row = $sql->fetch())
|
||||
{
|
||||
$row = $sql->fetch();
|
||||
if(empty($row)) break;
|
||||
|
||||
if(empty($row))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$datestamp = $gen->convert_date($row['post_datestamp'], 'short');
|
||||
if ($row['thread_datestamp'] == $row['post_datestamp'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user