1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 02:31:29 +00:00

display username in header

This commit is contained in:
Andrew Dolgov
2005-11-17 19:29:13 +01:00
parent 0cc89acb29
commit c93f38c494
5 changed files with 23 additions and 6 deletions

View File

@@ -6,6 +6,10 @@
require_once "db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$_SESSION["uid"] = PLACEHOLDER_UID; // FIXME: placeholder
$_SESSION["name"] = PLACEHOLDER_NAME;
?>
<html>
<head>
@@ -47,18 +51,17 @@
<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
<tr>
<td colspan="2" class="headerBox">
<td colspan="2">
<table cellspacing="0" cellpadding="0" width="100%"><tr>
<td class="header" valign="middle">
<td rowspan="2" class="header" valign="middle">
<img src="images/ttrss_logo.png" alt="logo">
</td>
<td align="right" valign="top">
<div id="notify"><span id="notify_body"></div>
</td>
</tr><tr><td class="welcomePrompt">
Hello, <b><?= $_SESSION["name"] ?></b> (<a href="logout.php">Logout</a>)</td>
</tr></table>
<div id="userDlg">&nbsp;</div>
</td>
</tr>
<? } ?>