We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a80daf commit 0dab403Copy full SHA for 0dab403
admin/index.php
@@ -36,7 +36,7 @@
36
include_once NV_ROOTDIR . '/includes/core/admin_functions.php';
37
38
$admin_mods = [];
39
-$result = $db->query('SELECT * FROM ' . $db_config['dbsystem'] . '.' . NV_AUTHORS_GLOBALTABLE . '_module WHERE act_' . $admin_info['level'] . ' = 1 ORDER BY weight ASC');
+$result = $db->query('SELECT * FROM ' . NV_AUTHORS_GLOBALTABLE . '_module WHERE act_' . $admin_info['level'] . ' = 1 ORDER BY weight ASC');
40
while ($row = $result->fetch()) {
41
$row['custom_title'] = isset($lang_global[$row['lang_key']]) ? $lang_global[$row['lang_key']] : $row['module'];
42
$admin_mods[$row['module']] = $row;
0 commit comments