mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 11:05:55 +00:00
add nicer interface when subscribing from external source (for ff 2.0)
This commit is contained in:
@@ -426,6 +426,19 @@
|
||||
|
||||
$feed_url = db_escape_string(trim($_GET["feed_url"]));
|
||||
$cat_id = db_escape_string($_GET["cat_id"]);
|
||||
$p_from = db_escape_string($_GET["from"]);
|
||||
|
||||
if ($p_from) {
|
||||
print "<html>
|
||||
<head>
|
||||
<title>Tiny Tiny RSS - Subscribe to feed...</title>
|
||||
<link rel=\"stylesheet\" type=\"text/css\" href=\"quicksub.css\">
|
||||
</head>
|
||||
<body>
|
||||
<img class=\"logo\" src=\"images/ttrss_logo.png\"
|
||||
alt=\"Tiny Tiny RSS\"/>
|
||||
<h1>Subscribe to feed...</h1>";
|
||||
}
|
||||
|
||||
if (subscribe_to_feed($link, $feed_url, $cat_id)) {
|
||||
print "Added feed.";
|
||||
@@ -434,6 +447,18 @@
|
||||
Feed <b>$feed_url</b> already exists in the database.
|
||||
</div>";
|
||||
}
|
||||
|
||||
if ($p_from) {
|
||||
$tt_uri = 'http://' . $_SERVER['SERVER_NAME'] .
|
||||
preg_replace('/backend\.php.*$/',
|
||||
'tt-rss.php', $_SERVER["REQUEST_URI"]);
|
||||
|
||||
print "<p><a href='$tt_uri'>Return to Tiny Tiny RSS</a> or
|
||||
<a href='javascript:window.close()'>close this window</a>.</p>";
|
||||
|
||||
print "</body></html>";
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
21
quicksub.css
Normal file
21
quicksub.css
Normal file
@@ -0,0 +1,21 @@
|
||||
body {
|
||||
margin : 1em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size : 14pt;
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
a {
|
||||
color : #4684ff;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color : black;
|
||||
}
|
||||
|
||||
img.logo {
|
||||
float : right;
|
||||
}
|
||||
Reference in New Issue
Block a user