Update classes.php
This commit is contained in:
parent
332c693a32
commit
4c9b8a87e2
|
|
@ -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'])) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue