mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-31 20:31:28 +00:00
make subscribe-to-feed dialog use POST
This commit is contained in:
@@ -425,9 +425,9 @@
|
||||
|
||||
if (!WEB_DEMO_MODE) {
|
||||
|
||||
$feed_url = db_escape_string(trim($_GET["feed_url"]));
|
||||
$cat_id = db_escape_string($_GET["cat_id"]);
|
||||
$p_from = db_escape_string($_GET["from"]);
|
||||
$feed_url = db_escape_string(trim($_POST["feed_url"]));
|
||||
$cat_id = db_escape_string($_POST["cat_id"]);
|
||||
$p_from = db_escape_string($_POST["from"]);
|
||||
|
||||
if ($p_from != 'tt-rss') {
|
||||
print "<html>
|
||||
|
||||
Reference in New Issue
Block a user