Revision: 495
Author: nemako
Date: 2006-05-15 01:26:32 -0700 (Mon, 15 May 2006)
ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=495&view=rev
Log Message:
-----------
add a display of the name of the connected user in the menu
Modified Paths:
--------------
trunk/admin/index_html_top.php
Modified: trunk/admin/index_html_top.php
===================================================================
--- trunk/admin/index_html_top.php 2006-05-13 21:10:35 UTC (rev 494)
+++ trunk/admin/index_html_top.php 2006-05-15 08:26:32 UTC (rev 495)
@@ -49,7 +49,16 @@
<a href="#">other</a>
</li>
</ul>
- </li>
+ </li>
+ <li class="sub title">Connected User</li>
+ <li>
+ <ul>
+ <li class="item">
+ <a href="#"><?php echo empty($_SERVER['REMOTE_USER']) ? "No user connected" : $_SERVER['REMOTE_USER']; ?></a>
+ </li>
+ </ul>
+ </li>
+
</ul>
<p class="partner">
<a href="http://www.phpfreechat.net"><img alt="logo big" src="style/logo_88x31.gif"></a>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|