Skip to content
Permalink
Browse files
Fix low severity stored XSS in admin/pageViewGroups.php
  • Loading branch information
Ahmad Gneady committed Jun 30, 2021
1 parent e822cb1 commit 2a29c6b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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">

0 comments on commit 2a29c6b

Please sign in to comment.