aboutsummaryrefslogtreecommitdiff
path: root/quotes/public/script.js
diff options
context:
space:
mode:
authorMarvin Borner2020-10-10 11:37:35 +0200
committerMarvin Borner2020-10-10 11:37:35 +0200
commitad2d5dd284dc733a5fbd2a9f60c30fa1b7a0da73 (patch)
tree2679845c62b523611578c021ab267268737ea923 /quotes/public/script.js
parent54837fbd3614f97c06675ca416859dcbe96e1190 (diff)
Fixed HTML injection and middlename spaces
Diffstat (limited to 'quotes/public/script.js')
-rw-r--r--quotes/public/script.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/quotes/public/script.js b/quotes/public/script.js
index f8486f9..d848814 100644
--- a/quotes/public/script.js
+++ b/quotes/public/script.js
@@ -11,7 +11,7 @@ function appendOption(response) {
(response[i - 1 < 0 ? 0 : i - 1]["class_id"] !== elem["class_id"]
? `<option disabled>--${classes[elem["class_id"] - 1]}--</option>`
: "") +
- `<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${
+ `<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] + " " : ""}${
elem["surname"]
}</option>`,
);
@@ -24,7 +24,7 @@ function appendQuote(response) {
.getElementById(elem["class"])
.insertAdjacentHTML(
"beforeend",
- `<li>${elem["name"]} ${elem["middlename"] ? elem["middlename"] : ""}${elem["surname"]}: ${
+ `<li>${elem["name"]} ${elem["middlename"] ? elem["middlename"] + " " : ""}${elem["surname"]}: ${
elem["quote"]
}${elem["owner"] ? ' <span data-id="' + elem["id"] + '">[x]</span></li>' : ""}`,
);