mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 14:17:49 +02:00
Issue #1373 Possible fix for forum posts not displaying.
This commit is contained in:
@@ -206,10 +206,13 @@ elseif ($action == 'forums')
|
|||||||
$vars = new e_vars();
|
$vars = new e_vars();
|
||||||
|
|
||||||
$userposts_forum_table_string = '';
|
$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');
|
$datestamp = $gen->convert_date($row['post_datestamp'], 'short');
|
||||||
if ($row['thread_datestamp'] == $row['post_datestamp'])
|
if ($row['thread_datestamp'] == $row['post_datestamp'])
|
||||||
|
Reference in New Issue
Block a user