Changeset 244 for quests/includes/global.php
- Timestamp:
- Jan 17, 2008, 7:24:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quests/includes/global.php
r240 r244 78 78 } 79 79 80 if (Licence( 1)) {80 if (Licence(2)) { 81 81 // echo 'Administrace:'; 82 echo '<a href="priorite.php" Title="Naètení priority questù ( Moderatoronly)">Priorita</a><br />';83 echo '<a href="log.php" Title="Log dìní ( Moderatoronly)">Log</a><br />82 echo '<a href="priorite.php" Title="Naètení priority questù (Admin only)">Priorita</a><br />'; 83 echo '<a href="log.php" Title="Log dìní (Admin only)">Log</a><br /> 84 84 <br />'; 85 85 } … … 107 107 } 108 108 echo 'Online u¾ivatelé:<br />'; 109 $ID = $Database->SQLCommand("SELECT user FROM `user` WHERE LastLogin >= Now()-300"); 110 while ($Line = mysql_fetch_array($ID)) 111 echo '<b>'.$Line['user'].'</b><br />'; 109 $ID = $Database->SQLCommand("SELECT user,GM FROM `user` WHERE LastLogin >= Now()-300"); 110 while ($Line = mysql_fetch_array($ID)) { 111 $TextGM = ' ('.$Moderators[$Line['GM']].')'; 112 echo '<b>'.$Line['user'].'</b>'.$TextGM.'<br />'; 113 } 112 114 113 115
Note:
See TracChangeset
for help on using the changeset viewer.