From af1924e04af24a2931e3442cb42ec19b310efb9c Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Sun, 28 May 2023 15:12:35 +0700 Subject: [PATCH] Update build_ranks.php --- library/includes/datastore/build_ranks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/includes/datastore/build_ranks.php b/library/includes/datastore/build_ranks.php index b8c876153..a347193b9 100644 --- a/library/includes/datastore/build_ranks.php +++ b/library/includes/datastore/build_ranks.php @@ -13,7 +13,7 @@ if (!defined('BB_ROOT')) { $ranks = array(); -$sql = "SELECT rank_id, rank_title, rank_image, rank_style FROM " . BB_RANKS; +$sql = "SELECT * FROM " . BB_RANKS; foreach (DB()->fetch_rowset($sql) as $row) { $ranks[$row['rank_id']] = $row;