Skip to content

Commit

Permalink
Fix low severity stored XSS in admin/pageViewGroups.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Gneady committed Jun 30, 2021
1 parent e822cb1 commit 2a29c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/admin/pageViewGroups.php
Expand Up @@ -74,7 +74,7 @@
$groupMembersCount = sqlValue("select count(1) from membership_users where groupID='$row[0]'");
?>
<tr>
<td><a href="pageEditGroup.php?groupID=<?php echo $row[0]; ?>"><?php echo $row[1]; ?></a></td>
<td><a href="pageEditGroup.php?groupID=<?php echo $row[0]; ?>"><?php echo htmlspecialchars($row[1]); ?></a></td>
<td><?php echo htmlspecialchars(thisOr($row[2])); ?></td>
<td class="text-right"><?php echo $groupMembersCount; ?></td>
<td class="text-center">
Expand Down

0 comments on commit 2a29c6b

Please sign in to comment.