]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/Database.php
Merge pull request #11267 from MrPetovan/task/11264-mastodon-api-version
[friendica.git] / src / Database / Database.php
index cc7f754ee6fda19e9f15f39b07386b7729a8f16d..f478d7993a1844dfac0f49c76da20f1c6bcef8a3 100644 (file)
@@ -138,6 +138,7 @@ class Database
                        try {
                                $this->connection = @new PDO($connect, $user, $pass, [PDO::ATTR_PERSISTENT => $persistent]);
                                $this->connection->setAttribute(PDO::ATTR_EMULATE_PREPARES, $this->pdo_emulate_prepares);
+                               $this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
                                $this->connected = true;
                        } catch (PDOException $e) {
                                $this->connected = false;