diff options
-rw-r--r-- | category.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/category.php b/category.php index 4e10444..b2f6dbd 100644 --- a/category.php +++ b/category.php @@ -41,7 +41,7 @@ echo '<table><tr><th class="left">Topic</th><th class="right">Latest Post</th></ while ($row = mysqli_fetch_assoc($result)) { echo '<tr><td class="left">'; echo '<h4><a href="topic.php?id=' . $row['topic_id'] . '">' . $row['topic_subject'] . '</a></h4>'; - echo '<small>by <b>' . $row['user_name'] . '</b> on ' . date('M d, Y', strtotime($row['topic_date'])) . '</small></td><td class="right">24 replies</td></tr>'; + echo '<small>by <b>' . $row['user_name'] . '</b> on ' . date('M d, Y', strtotime($row['topic_date'])) . '</small></td><td class="right">by <b>cflip</b><br><small>01-22-2021 9:34</small></td></tr>'; } echo '</table>'; |