Website is completed working, moved into billing module
This commit is contained in:
parent
3ea6436f27
commit
437fbad5e6
401 changed files with 1822 additions and 7831 deletions
11
modules/billing/includes/login_required.php
Normal file
11
modules/billing/includes/login_required.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
if (session_status() === PHP_SESSION_NONE) {
|
||||
session_name("gameservers_website");
|
||||
session_start();
|
||||
}
|
||||
|
||||
// Debugging mode: do not enforce login redirects. Pages can load without authentication.
|
||||
// If you later want to re-enable, restore the original redirect behavior.
|
||||
// (This file intentionally left as a no-op during debugging.)
|
||||
return;
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue