Actually return content of the variable, do not print it

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2015-04-28 14:33:51 +02:00
parent 6df80bdef0
commit 61ba51d4b1

View File

@ -305,7 +305,7 @@ class PMA_Error_Handler
$retval .= $error->getDisplay();
}
} else {
$retval .= var_export($error);
$retval .= var_export($error, true);
}
}
} else {