updated references

This commit is contained in:
2019-09-23 12:37:09 +02:00
parent f20288ef71
commit b5f56b7c53
23 changed files with 67 additions and 67 deletions

View File

@@ -1,9 +1,9 @@
<?php
require_once(ROOT_DIR.'./controller/UserSession.php');
require_once(ROOT_DIR.'/controller/UserSession.php');
if(UserSession::isUserSignedIn()){
include(ROOT_DIR.'./view/webcontent/header/header_signedin.php');
include(ROOT_DIR.'/view/webcontent/header/header_signedin.php');
}
else{
include(ROOT_DIR.'./view/webcontent/header/header_signedout.php');
include(ROOT_DIR.'/view/webcontent/header/header_signedout.php');
}
?>