Skip to content

Commit

Permalink
Update user_list.php
Browse files Browse the repository at this point in the history
  • Loading branch information
zhblue authored Oct 26, 2021
1 parent 61bf6f7 commit 56e9329
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion trunk/web/admin/user_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@
echo "<tr>";
echo "<td><a href='../userinfo.php?user=".$row['user_id']."'>".$row['user_id']."</a></td>";
echo "<td><span fd='nick' user_id='".$row['user_id']."'>".$row['nick']."</span></td>";
echo "<td>".$row['email']."</td>";
if($OJ_SaaS_ENABLE && $domain == $DOMAIN){
echo "<td><a href='http://".$row['user_id'].".$DOMAIN' target=_blank >".$row['email']."&nbsp;</a></td>";
}else{
echo "<td>".$row['email']."</td>";
}
echo "<td><span fd='school' user_id='".$row['user_id']."'>".$row['school']."</span></td>";
echo "<td>".$row['accesstime']."</td>";
echo "<td>".$row['reg_time']."</td>";
Expand Down

0 comments on commit 56e9329

Please sign in to comment.