From a75b4e10518dc6db18bcfc84d075c1df564c7263 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 11 Oct 2007 06:25:45 +0000 Subject: [PATCH] missing parameter in function call (bug #1811316 Error handler produces error) --- libraries/Error.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Error.class.php b/libraries/Error.class.php index a9b6fca90..31d6e1225 100644 --- a/libraries/Error.class.php +++ b/libraries/Error.class.php @@ -303,7 +303,7 @@ class PMA_Error extends PMA_Message echo "
\n"; foreach ($step['args'] as $arg) { echo "\t"; - $this->displayArg($arg); + $this->displayArg($arg, $step['function']); echo ',' . "
\n"; } } elseif (count($step['args']) > 0) {