Merge branch 'Panel-unstable' of https://github.com/GameServerPanel/GSP into Panel-unstable

This commit is contained in:
Frank Harris 2025-11-10 07:23:04 -05:00
commit 2160fba52e
19 changed files with 369 additions and 0 deletions

View file

@ -25,6 +25,14 @@ if (empty($_SESSION['website_user_id'])) {
// Require DB config and check role live from panel DB
require_once(__DIR__ . '/config.inc.php');
// Variables from config.inc.php (helps IDEs understand scope)
/** @var string $db_host Database host */
/** @var string $db_user Database user */
/** @var string $db_pass Database password */
/** @var string $db_name Database name */
/** @var string $table_prefix Table prefix for database tables */
// Use a local connection variable so we don't clash with pages that also use $db
$auth_db = @mysqli_connect($db_host, $db_user, $db_pass, $db_name);
if (!$auth_db) {

View file

@ -27,6 +27,14 @@ $is_admin = false;
if ($is_logged_in) {
// load DB credentials
require_once(__DIR__ . '/config.inc.php');
// Variables from config.inc.php (helps IDEs understand scope)
/** @var string $db_host Database host */
/** @var string $db_user Database user */
/** @var string $db_pass Database password */
/** @var string $db_name Database name */
/** @var string $table_prefix Table prefix for database tables */
// Prefer reusing an existing $db if present, otherwise open a local connection
$menu_db = null;
$menu_db_opened = false;

View file

@ -21,6 +21,13 @@ if (is_file($moduleConfig)) {
error_log('[payment_processor] Module config not found: expected ' . $moduleConfig);
}
// Variables from config.inc.php (helps IDEs understand scope)
/** @var string $db_host Database host */
/** @var string $db_user Database user */
/** @var string $db_pass Database password */
/** @var string $db_name Database name */
/** @var string $table_prefix Table prefix for database tables */
// Normalize table prefix variable: many files use $table_prefix (lowercase)
if (!isset($TABLE_PREFIX) && isset($table_prefix)) {
$TABLE_PREFIX = $table_prefix;