1
0
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:
Andrew Dolgov
2006-05-22 04:54:51 +01:00
parent eb4311d00f
commit 071644795c
3 changed files with 110 additions and 106 deletions

View File

@@ -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>";