summaryrefslogtreecommitdiff
path: root/all.php
diff options
context:
space:
mode:
authorCflip <36554078+cflip@users.noreply.github.com>2021-02-10 20:40:32 -0700
committerCflip <36554078+cflip@users.noreply.github.com>2021-02-10 20:40:32 -0700
commitf83530a122119d7f69812493f9c2f4987ccb2065 (patch)
tree691ed8597a8d3275998f7db951b7b055ef5baf3b /all.php
parent4c9d433ba1c52ad67e4cccabf04e709bb8b85070 (diff)
Reorganize code and add info to front page
Diffstat (limited to 'all.php')
-rw-r--r--all.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/all.php b/all.php
index c8bbc75..dc97914 100644
--- a/all.php
+++ b/all.php
@@ -3,7 +3,7 @@
include_once 'header.php';
include_once 'includes/db_inc.php';
-include_once 'includes/functions_inc.php';
+include_once 'includes/functions_display.php';
$sql = "SELECT thread_id, thread_subject, thread_date, user_id, user_name, cat_id, cat_name FROM threads JOIN users ON thread_author = user_id JOIN categories ON thread_cat = cat_id ORDER BY thread_id DESC";
$result = mysqli_query($dbc, $sql);