Skip to content

Commit

Permalink
Fix low severity stored XSS vulnerability in admin/pageViewMembers.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Gneady committed Jul 1, 2021
1 parent 7167fbd commit a5faa00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/admin/pageViewMembers.php
Expand Up @@ -160,8 +160,8 @@
<?php } else { ?>
<td class="text-left"><a href="pageEditMember.php?memberID=<?php echo $row[0]; ?>"><?php echo $row[0]; ?></a></td>
<?php } ?>
<td class="text-left"><?php echo $row[1]; ?></td>
<td class="text-left"><?php echo $row[2]; ?></td>
<td class="text-left"><?php echo htmlspecialchars($row[1]); ?></td>
<td class="text-left"><?php echo htmlspecialchars($row[2]); ?></td>
<td class="text-left"><?php echo htmlspecialchars($row[3]); ?></td>
<td class="text-left"><?php echo htmlspecialchars($row[4]); ?></td>
<td class="text-left"><?php echo htmlspecialchars($row[5]); ?></td>
Expand Down

0 comments on commit a5faa00

Please sign in to comment.