Correct call to free method

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2014-03-26 16:23:02 +01:00
parent d4e34e76bb
commit 638f3be8af

View File

@ -188,7 +188,7 @@ abstract class PMA_SeleniumBase extends PHPUnit_Extensions_Selenium2TestCase
{
$result = $this->dbQuery('SELECT COUNT(*) FROM mysql.user');
if ($result !== false) {
$result::free();
$result->free();
return true;
}
return false;