mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 13:51:28 +00:00
filter editor uses prototype
This commit is contained in:
@@ -1601,7 +1601,7 @@
|
||||
$is_selected = "";
|
||||
}
|
||||
printf("<option $is_selected value='%d'>%s</option>",
|
||||
$line["id"], db_unescape_string($line["title"]));
|
||||
$line["id"], htmlspecialchars(db_unescape_string($line["title"])));
|
||||
}
|
||||
|
||||
print "</select>";
|
||||
@@ -1630,7 +1630,7 @@
|
||||
$is_selected = "";
|
||||
}
|
||||
printf("<option $is_selected value='%d'>%s</option>",
|
||||
$line["id"], $line["title"]);
|
||||
$line["id"], htmlspecialchars(db_unescape_string($line["title"])));
|
||||
}
|
||||
|
||||
print "</select>";
|
||||
|
||||
Reference in New Issue
Block a user