summaryrefslogtreecommitdiff
path: root/mirrors/index.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-02-18 20:12:17 +0100
committerErich Eckner <git@eckner.net>2019-02-18 20:12:17 +0100
commit4c6b074e85d7d8e97b9f125f5fbc2949bc8839dd (patch)
treeb1049ef75f830be56aa5dbba951872d794b11b2a /mirrors/index.php
parent4376c50ded25fff8ab6c59c045522091b3eb038b (diff)
downloadwebsite-4c6b074e85d7d8e97b9f125f5fbc2949bc8839dd.tar.xz
buildmaster/build-list-links.php,buildmaster/build-list.php,buildmaster/build-slaves.php,buildmaster/deletion-links.php,buildmaster/dependencies.php,buildmaster/log.php,buildmaster/mysql-issues.php,buildmaster/statistics.php,buildmaster/todos.php,lib/format.php,mirrors/index.php,packages/index.php: isset($_GET[$x]) -> array_key_exists($x, $_GET)
Diffstat (limited to 'mirrors/index.php')
-rw-r--r--mirrors/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/index.php b/mirrors/index.php
index f0b7393..62e1668 100644
--- a/mirrors/index.php
+++ b/mirrors/index.php
@@ -52,7 +52,7 @@ $query =
" GROUP BY `url`" .
" ORDER BY ";
-if (isset($_GET["sort"])) {
+if (array_key_exists("sort", $_GET)) {
if (isset($sorts[$_GET["sort"]]["mysql"]))
$query .= $sorts[$_GET["sort"]]["mysql"] . ",";
elseif (isset($sorts[substr($_GET["sort"],1)]["mysql"]))