Fixup from merge

Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
This commit is contained in:
Isaac Bennetch 2018-06-21 14:00:03 -04:00
parent d1360f46ce
commit dcf434b635
2 changed files with 1 additions and 3 deletions

View File

@ -438,8 +438,6 @@ class Core
} // end getRealSize()
/**
* boolean phpMyAdmin.Core::checkPageValidity(string &$page, array $whitelist, boolean $include)
*
* Checks given $page against given $whitelist and returns true if valid
* it optionally ignores query parameters in $page (script.php?ignored)
*

View File

@ -294,7 +294,7 @@ class CoreTest extends PmaTestCase
['index.php?sql.php&test=true', $this->goto_whitelist, true, false],
['index.php%3Fsql.php%26test%3Dtrue', $this->goto_whitelist, false, true],
['index.php%3Fsql.php%26test%3Dtrue', $this->goto_whitelist, true, false],
];
];
}
/**