From 9f042ad03717f154d44fdf20191def59df0d399f Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 28 Feb 2017 07:14:46 +0100 Subject: [PATCH] fix output of errors --- install/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.php b/install/install.php index b61790cf9..313dcb475 100644 --- a/install/install.php +++ b/install/install.php @@ -311,7 +311,7 @@ if ($action=="setSettings") { $connTmp->exec($query); if ($connTmp->errorCode() != 0) { - $errorMsg .= $connTmp->errorInfo() . "
"; + $errorMsg .= $connTmp->errorInfo()[2] . "
"; } } }