1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:45:55 +00:00

print_select, print_select_hash: remove line endings and other special symbols (closes #593)

This commit is contained in:
Andrew Dolgov
2013-03-19 09:02:40 +04:00
parent 44ae16ce27
commit e88c194357

View File

@@ -461,6 +461,8 @@
else
$sel = "";
$v = trim($v);
print "<option value=\"$v\" $sel>$v</option>";
}
print "</select>";
@@ -474,6 +476,8 @@
else
$sel = "";
$v = trim($v);
print "<option $sel value=\"$v\">".$values[$v]."</option>";
}