mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-16 22:51:32 +00:00
escape email address
This commit is contained in:
parent
768c02866c
commit
788b5b0014
|
@ -85,7 +85,7 @@ $(document).ready( function() {
|
||||||
echo "<tr>";
|
echo "<tr>";
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
echo htmlspecialchars($currUser->getFullName())." (".htmlspecialchars($currUser->getLogin()).")";
|
echo htmlspecialchars($currUser->getFullName())." (".htmlspecialchars($currUser->getLogin()).")";
|
||||||
echo "<br /><a href=\"mailto:".$currUser->getEmail()."\">".htmlspecialchars($currUser->getEmail())."</a>";
|
echo "<br /><a href=\"mailto:".htmlspecialchars($currUser->getEmail())."\">".htmlspecialchars($currUser->getEmail())."</a>";
|
||||||
if($currUser->getComment())
|
if($currUser->getComment())
|
||||||
echo "<br /><small>".htmlspecialchars($currUser->getComment())."</small>";
|
echo "<br /><small>".htmlspecialchars($currUser->getComment())."</small>";
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user