diff options
author | Cflip <36554078+cflip@users.noreply.github.com> | 2021-01-23 12:25:51 -0700 |
---|---|---|
committer | Cflip <36554078+cflip@users.noreply.github.com> | 2021-01-23 12:26:18 -0700 |
commit | 279d399461e6a66157bb2f0bc8209bf0fcb36c9c (patch) | |
tree | 779492cc411d6c9171d57cdecf7a43f39e2ca512 /index.php | |
parent | 0b26a9cd485d5b1ed509d9da998780d8b658eb8a (diff) |
Change terminology from topics to threads
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ include_once 'header.php'; <table> <tr> <th class="left">Category</th> - <th class="right">Latest Topic</th> + <th class="right">Latest Thread</th> </tr> <?php include_once 'includes/db_inc.php'; @@ -20,7 +20,7 @@ include_once 'header.php'; echo '<tr><td class="left">'; echo '<h4><a href="category.php?id=' . $row['cat_id'] . '">' . $row['cat_name'] . '</a></h4>'; echo $row['cat_description']; - echo '</td><td class="right">Example topic right here<br><small>1 hour ago by <b>cflip</b></small></td></tr>'; + echo '</td><td class="right">Example thread<br><small>1 hour ago by <b>example user</b></small></td></tr>'; } mysqli_free_result($result); |