Update classes.php

This commit is contained in:
nolanwhy 2023-02-05 13:18:18 +01:00
parent 332c693a32
commit 4c9b8a87e2
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<?php <?php
require ('core/config.php'); require_once 'core/config.php';
class PartyStarter { class PartyStarter {
function bootstrap() { function bootstrap() {
@ -10,7 +10,7 @@ class PartyStarter {
} }
function header() { function header() {
// to not confuse you i renamed it from loggedoutheader to header since qzip made it both lol // to not confuse you i renamed it from loggedoutheader to header since qzip made it both lol
require ('core/config.php'); require_once 'core/config.php';
$grubloxlogotohome = '<a class="navbar-brand text-dark" href="/"><div class="headerLogo d-inline-block align-top" alt=""></div></a>'; $grubloxlogotohome = '<a class="navbar-brand text-dark" href="/"><div class="headerLogo d-inline-block align-top" alt=""></div></a>';
$showhome = ''; $showhome = '';
if (isset($_SESSION['user'])) { if (isset($_SESSION['user'])) {