Remove unused request parameter for Util::checkParameters

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2017-06-13 12:34:43 +02:00
parent 6a12e15994
commit 45640d5e0f

View File

@ -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;