diff options
Diffstat (limited to 'web/html/index.php')
-rw-r--r-- | web/html/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/index.php b/web/html/index.php index c7847f2..a712e4d 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -11,6 +11,7 @@ set_lang(); check_sid(); html_header( __("Home") ); + $dbh = db_connect(); ?> @@ -56,8 +57,8 @@ echo __( </td> <td class='boxSoft' valign='top'> <?php -$user = username_from_sid($_COOKIE["AURSID"]); -if (!empty($user)) { +if (!empty($_COOKIE["AURSID"])) { + $user = username_from_sid($_COOKIE["AURSID"]); user_table($user, $dbh); echo '<br />'; } |