diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-12-03 11:39:48 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-12-03 11:39:48 +0000 |
commit | cc1b8efaa32ac03ded291f20f273896b252be1bb (patch) | |
tree | 77a31c4b92e2dee4090aedb301e30897068b1537 | |
parent | c65e00ced48bce2fdd5261619a31774be276f297 (diff) |
link von den onliner user zum user edit implementiert
git-svn-id: svn://svn.cccv.de/engel-system@193 29ba0400-6e00-0410-a75a-ca02368028f8
-rwxr-xr-x | www-ssl/inc/funktion_activeUser.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www-ssl/inc/funktion_activeUser.php b/www-ssl/inc/funktion_activeUser.php index b5d66d8a..5d1ae0f8 100755 --- a/www-ssl/inc/funktion_activeUser.php +++ b/www-ssl/inc/funktion_activeUser.php @@ -20,7 +20,7 @@ if( !function_exists("bcmod")) echo "<h4 class=\"menu\">Engels Online</h4>"; -$SQL = "SELECT Nick, lastLogIn ". +$SQL = "SELECT UID, Nick, lastLogIn ". "FROM User ". "WHERE (`lastLogIn` > '". gmdate("YmdHis", time()-(60*60)). "' AND NOT (UID=". $_SESSION['UID']. ")) ". "ORDER BY lastLogIn DESC;"; @@ -36,7 +36,12 @@ $Tist = (gmdate("d", time()) * 60 * 60 * 24) + // Tag for( $i=0; $i<mysql_num_rows($Erg); $i++) { echo "\t\t\t<li>"; - echo mysql_result( $Erg, $i, "Nick"); + // Schow Admin Page + if( $_SESSION['CVS'][ "admin/user.php" ] == "Y" ) + echo " <a href=\"./../admin/user.php?enterUID=". mysql_result( $Erg, $i, "UID"). "&Type=Normal\">". + mysql_result( $Erg, $i, "Nick"). "</a>"; + else + echo mysql_result( $Erg, $i, "Nick"); $Tlog = (substr( mysql_result( $Erg, $i, "lastLogIn"), 8, 2) * 60 * 60 * 24) + // Tag (substr( mysql_result( $Erg, $i, "lastLogIn"), 11, 2) * 60 * 60) + // Stunde (substr( mysql_result( $Erg, $i, "lastLogIn"), 14, 2) * 60) + // Minute |