From 4c6b074e85d7d8e97b9f125f5fbc2949bc8839dd Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 18 Feb 2019 20:12:17 +0100 Subject: 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) --- buildmaster/deletion-links.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildmaster/deletion-links.php') diff --git a/buildmaster/deletion-links.php b/buildmaster/deletion-links.php index 6d21bda..f26208a 100644 --- a/buildmaster/deletion-links.php +++ b/buildmaster/deletion-links.php @@ -5,12 +5,12 @@ require_once BASE . "/lib/mysql.php"; $edges = ""; $knots = ""; -if (isset($_GET["show_all"])) +if (array_key_exists("show_all", $_GET)) $available_filter = " LEFT"; else $available_filter = ""; -if (isset($_GET["pkgname"])) +if (array_key_exists("pkgname", $_GET)) $filter = " AND `binary_packages`.`pkgname` REGEXP from_base64(\"" . base64_encode($_GET["pkgname"]) . "\")"; else $filter = ""; -- cgit v1.2.3-54-g00ecf