mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-01 06:27:15 +00:00
run output through htmlspecialchars()
This commit is contained in:
parent
1fa117281b
commit
ab8d5ed502
|
@ -95,7 +95,7 @@ class SeedDMS_View_ImportUsers extends SeedDMS_Theme_Style {
|
||||||
foreach($newusers as $uhash=>$newuser) {
|
foreach($newusers as $uhash=>$newuser) {
|
||||||
foreach($colmap as $i=>$coldata) {
|
foreach($colmap as $i=>$coldata) {
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
echo call_user_func($colmap[$i][1], $colmap[$i][2], $newuser);
|
echo htmlspecialchars(call_user_func($colmap[$i][1], $colmap[$i][2], $newuser));
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
}
|
}
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user