Cody Cook 8f3061ab99
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 5m39s
Language updates. New upload form. new classes.
2025-02-22 00:20:39 -08:00

15 lines
285 B
PHP

<?php
require_once 'includes/globals.php';
use DJMixHosting\SessionManager;
// Start the session (if not already started)
SessionManager::start();
// Destroy the session using the SessionManager
SessionManager::destroy();
// Redirect to the homepage
header("Location: /");
exit();