summaryrefslogtreecommitdiff
path: root/all.php
diff options
context:
space:
mode:
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);