From 45640d5e0f39ab2829c42e5a6d78461060542b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 13 Jun 2017 12:34:43 +0200 Subject: [PATCH] Remove unused request parameter for Util::checkParameters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/Util.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libraries/Util.php b/libraries/Util.php index e57d111665..f2e5e4e795 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -1983,14 +1983,12 @@ class Util * * @param string[] $params The names of the parameters needed by the calling * script - * @param bool $request Whether to include this list in checking for - * special params * * @return void * * @access public */ - public static function checkParameters($params, $request = true) + public static function checkParameters($params) { $reported_script_name = basename($GLOBALS['PMA_PHP_SELF']); $found_error = false;