The following piece of code, in may cause a fatal error
Fatal error: Call to a member function isDisplayed() on a non-object in libraries/Error_Handler.class.php on line 60
foreach ($this->_errors as $key => $error) {
if (! $error->isDisplayed()) {
$_SESSION['errors'][$key] = $error;
}
$error may not be an instance of PMA_Error but an empty array.
fix for the problem
Merged in subversion, thanks.