summaryrefslogtreecommitdiff
path: root/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-17 19:29:13 +0100
committerAndrew Dolgov <[email protected]>2005-11-17 19:29:13 +0100
commitc93f38c4949fdbfaf256f493bcdaf772873f4e8a (patch)
tree65c8412ea46d7459348c62448aad3353a9e5a15f /tt-rss.php
parent0cc89acb29b6e851bceed111edd8f316f59fc697 (diff)
display username in header
Diffstat (limited to 'tt-rss.php')
-rw-r--r--tt-rss.php13
1 files changed, 8 insertions, 5 deletions
diff --git a/tt-rss.php b/tt-rss.php
index d1460935e..ed7e6dc13 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -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>
<? } ?>