Fix get/set admin username

This commit is contained in:
billz
2024-02-08 09:41:42 +01:00
parent 56b9ff5a3b
commit cd7820ddd2
2 changed files with 2 additions and 0 deletions

View File

@@ -96,6 +96,7 @@ class HTTPAuth
if ($auth_details = fopen(RASPI_CONFIG . '/raspap.auth', 'r')) {
$config['admin_user'] = trim(fgets($auth_details));
$config['admin_pass'] = trim(fgets($auth_details));
$_SESSION['user_id'] = $config['admin_user'];
fclose($auth_details);
}
}