escape HTML special chars
This commit is contained in:
parent
95d9c0dc2c
commit
48a1626427
|
@ -418,9 +418,11 @@ class lamList {
|
||||||
if (is_array($entry[$attribute])) {
|
if (is_array($entry[$attribute])) {
|
||||||
// sort array
|
// sort array
|
||||||
sort($entry[$attribute]);
|
sort($entry[$attribute]);
|
||||||
echo implode("; ", $entry[$attribute]);
|
echo htmlspecialchars(implode("; ", $entry[$attribute]), ENT_QUOTES, "UTF-8");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
echo htmlspecialchars($entry[$attribute], ENT_QUOTES, "UTF-8");
|
||||||
}
|
}
|
||||||
else echo $entry[$attribute];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue