Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-04-19 05:01:19 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-04-19 05:01:19 +0300
commite64c50aff8fb83ef59a91eecab0666b410e07383 (patch)
treef91ffeeffe0032a28bdc70b3034594ba2e4b3ccc /test
parent2cde3122a3f2846e5c24154e6490a54a28066bf5 (diff)
Fix "undefined index" notices in common.inc.php
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/classes/CoreTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/classes/CoreTest.php b/test/classes/CoreTest.php
index 7a04cf763c..7f38a8cb8c 100644
--- a/test/classes/CoreTest.php
+++ b/test/classes/CoreTest.php
@@ -280,7 +280,8 @@ class CoreTest extends PmaTestCase
public function providerTestGotoNowhere()
{
return array(
- array(null, [], false),
+ array('', [], false),
+ array('', [''], false),
array('export.php', [], true),
array('export.php', $this->goto_whitelist, true),
array('shell.php', $this->goto_whitelist, false),