1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:25:56 +00:00

amend previous to fix actual underlying problem (double escaping)

This commit is contained in:
Andrew Dolgov
2021-02-16 15:36:40 +03:00
parent 4f4e57bb26
commit 627af2c236
2 changed files with 3 additions and 7 deletions

View File

@@ -61,7 +61,7 @@
function hidden_tag(string $name, string $value) {
return "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"
name=\"".htmlspecialchars($name)."\" value=\"$value\">";
name=\"".htmlspecialchars($name)."\" value=\"".htmlspecialchars($value)."\">";
}
function checkbox_tag(string $name, bool $checked = false, string $value = "", string $attributes = "", string $id = "") {