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 Dec 12, 2024
1 parent 6739237 commit 3b0bf02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/web/admin/user_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<?php
foreach($result as $row){
echo "<tr>";
echo "<td><a href='../userinfo.php?user=".$row['user_id']."'>".$row['user_id']."</a></td>";
echo "<td><a href='../userinfo.php?user=".htmlentities(urlencode($row['user_id']))."'>".$row['user_id']."</a></td>";
echo "<td><span fd='nick' user_id='".$row['user_id']."'>".$row['nick']."</span></td>";
echo "<td><a href='user_list.php?keyword=".htmlentities(urlencode($row['ip']))."' >".$row['ip']."</td>";
if($OJ_SaaS_ENABLE && $domain == $DOMAIN){
Expand Down

0 comments on commit 3b0bf02

Please sign in to comment.