Skip to content
Snippets Groups Projects
Commit c46f0b31 authored by fsteger's avatar fsteger
Browse files

Fix amp problem in backup mail

parent a57a8e89
No related branches found
No related tags found
No related merge requests found
Pipeline #270789 passed
......@@ -759,7 +759,7 @@ $(document).ready(function () {
let exam_nr = obj.exam_nr;
let lecturer_name = $("#lecturer_" + id + " .lastname").text();
let lecturer_name_us = lecturer_name.replace(/ /g, "_");
let exam = $("#exam_" + id).text();
let exam = encodeURIComponent($("#exam_" + id).text());
let date = $("#date_" + id).text();
let date_reverse = date.split(".").reverse().join(".");
date_reverse = date_reverse.split(".").join("");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment