|
@@ -21,12 +21,10 @@
|
|
|
{
|
|
|
$config = require "config.php";
|
|
|
|
|
|
- if (isset($_COOKIE[$frontend]) || isset($_REQUEST[$frontend]) || !empty($config->$frontend))
|
|
|
+ if (isset($_COOKIE[$frontend]) || !empty($config->$frontend))
|
|
|
{
|
|
|
if (isset($_COOKIE[$frontend]))
|
|
|
$frontend = $_COOKIE[$frontend];
|
|
|
- else if (isset($_REQUEST[$frontend]))
|
|
|
- $frontend = $_REQUEST[$frontend];
|
|
|
else if (!empty($config->$frontend))
|
|
|
$frontend = $config->$frontend;
|
|
|
|
|
@@ -140,7 +138,7 @@
|
|
|
|
|
|
function check_for_special_search($query)
|
|
|
{
|
|
|
- if (isset($_COOKIE["disable_special"]) || isset($_REQUEST["disable_special"]))
|
|
|
+ if (isset($_COOKIE["disable_special"]))
|
|
|
return 0;
|
|
|
|
|
|
$query_lower = strtolower($query);
|
|
@@ -194,13 +192,12 @@
|
|
|
|
|
|
function request($url)
|
|
|
{
|
|
|
- $ch = curl_init($url);
|
|
|
-
|
|
|
- curl_setopt($ch, CURLOPT_HEADER, false);
|
|
|
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
- $response = curl_exec($ch);
|
|
|
+ $ch = curl_init($url);
|
|
|
+ curl_setopt($ch, CURLOPT_HEADER, false);
|
|
|
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
+ $response = curl_exec($ch);
|
|
|
|
|
|
- return $response;
|
|
|
+ return $response;
|
|
|
}
|
|
|
|
|
|
function human_filesize($bytes, $dec = 2)
|
|
@@ -226,13 +223,6 @@
|
|
|
function print_next_page_button($text, $page, $query, $type)
|
|
|
{
|
|
|
echo "<form class=\"page\" action=\"search.php\" target=\"_top\" method=\"get\" autocomplete=\"off\">";
|
|
|
- foreach($_REQUEST as $key=>$value)
|
|
|
- {
|
|
|
- if ($key != "q" && $key != "p" && $key != "t")
|
|
|
- {
|
|
|
- echo "<input type=\"hidden\" name=\"$key\" value=\"$value\"/>";
|
|
|
- }
|
|
|
- }
|
|
|
echo "<input type=\"hidden\" name=\"p\" value=\"" . $page . "\" />";
|
|
|
echo "<input type=\"hidden\" name=\"q\" value=\"$query\" />";
|
|
|
echo "<input type=\"hidden\" name=\"t\" value=\"$type\" />";
|
|
@@ -240,5 +230,3 @@
|
|
|
echo "</form>";
|
|
|
}
|
|
|
?>
|
|
|
-
|
|
|
-
|