1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 18:01:27 +00:00

apply https bugfix from Frank De Meulenaere

This commit is contained in:
Andrew Dolgov
2008-02-24 13:18:08 +01:00
parent 9a91a51e0d
commit d70c5ae4de
2 changed files with 5 additions and 8 deletions

View File

@@ -5219,7 +5219,7 @@
function article_publish_url($link) {
$url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
@@ -5247,7 +5247,7 @@
* @return string The Mozilla Firefox feed adding URL.
*/
function add_feed_url() {
$url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
return $url_path;
} // function add_feed_url