diff --git a/opensearch.php b/opensearch.php index fb51430..4bdf97c 100644 --- a/opensearch.php +++ b/opensearch.php @@ -5,14 +5,27 @@ include "data/config.php"; $domain = htmlspecialchars( - ((isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on" || $_SERVER["HTTPS"] === 1)) ? "https" : "http") . + (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? "https" : "http") . '://' . $_SERVER["HTTP_HOST"] ); +if( + preg_match( + '/\.onion$/', + $domain + ) +){ + + $onion = true; +}else{ + + $onion = false; +} + echo '' . '' . - '' . htmlspecialchars(config::SERVER_NAME) . '' . + '' . htmlspecialchars(config::SERVER_NAME) . ($onion ? " (onion)" : "") . '' . 'UTF-8' . '' . $domain . '/favicon.ico' . ''; diff --git a/scraper/qwant.php b/scraper/qwant.php index 8b160ed..a8b69fe 100644 --- a/scraper/qwant.php +++ b/scraper/qwant.php @@ -259,6 +259,7 @@ class qwant{ } curl_close($curlproc); + return $data; } diff --git a/sitemap.php b/sitemap.php index 041550c..80bda66 100644 --- a/sitemap.php +++ b/sitemap.php @@ -5,7 +5,7 @@ include "data/config.php"; $domain = htmlspecialchars( - ((isset($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on" || $_SERVER["HTTPS"] === 1)) ? "https" : "http") . + (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on" ? "https" : "http") . '://' . $_SERVER["HTTP_HOST"] );