aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authoradam <adam@>2021-02-13 12:13:13 +0200
committeradam <adam@>2021-02-13 12:13:13 +0200
commit232ec00948655b8c68035368400b0a79c101976b (patch)
tree23db4dd54cbfd84a98b0315712529c4de073f9b7 /index.php
parent508baff21febbd3676ce29d4d45e326d8a11cc4b (diff)
downloadfileup-232ec00948655b8c68035368400b0a79c101976b.tar.gz
removed usename from session
Diffstat (limited to 'index.php')
-rw-r--r--index.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/index.php b/index.php
index 1d28812..3fc4afc 100644
--- a/index.php
+++ b/index.php
@@ -1,4 +1,5 @@
<?php
+ require_once "php/user.php";
session_start();
?>
<!DOCTYPE html>
@@ -20,9 +21,15 @@
<div style="flex: 1 0 0;"></div>
<ul id="topmenu">
- <?php if (array_key_exists("username", $_SESSION)) { ?>
+ <?php if (array_key_exists("user_object", $_SESSION)) { ?>
- <li><?php echo $_SESSION['username'];?></li>
+ <li>
+ <?php
+ $user=$_SESSION['user_object'];
+ error_log($user->username);
+ echo $user->username;
+ ?>
+ </li>
<li onclick="window.location.href='/php/logout.php'">Sign out</li>
<?php } else {?>
@@ -38,7 +45,7 @@
<div id="page">
<?php
- if (array_key_exists("username", $_SESSION)) {
+ if (array_key_exists("user_object", $_SESSION)) {
require_once("loggedin.php");
} else {
require_once("loginregister.php");