mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 12:11:19 +00:00
- call htmlspecialchars() on email
This commit is contained in:
parent
4e8ba69ba8
commit
a731ac5ea0
|
@ -62,7 +62,7 @@ foreach ($users as $currUser) {
|
|||
|
||||
print "<td>".htmlspecialchars($currUser->getFullName())."</td>";
|
||||
|
||||
print "<td><a href=\"mailto:".$currUser->getEmail()."\">".$currUser->getEmail()."</a></td>";
|
||||
print "<td><a href=\"mailto:".htmlspecialchars($currUser->getEmail())."\">".htmlspecialchars($currUser->getEmail())."</a></td>";
|
||||
print "<td>".htmlspecialchars($currUser->getComment())."</td>";
|
||||
|
||||
if ($settings->_enableUserImage){
|
||||
|
|
Loading…
Reference in New Issue
Block a user