From 0b259ce52fc8366393076054aa35774342a8f9e3 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Wed, 31 Oct 2018 09:39:31 +0100 Subject: [PATCH] [BUGFIX] Fixes broken installer due to missing serendipity_db_probe() call. --- include/functions_installer.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/functions_installer.inc.php b/include/functions_installer.inc.php index 3deb0042..dbdbe270 100644 --- a/include/functions_installer.inc.php +++ b/include/functions_installer.inc.php @@ -646,6 +646,9 @@ function serendipity_checkInstallation() { include_once(S9Y_INCLUDE_PATH . "include/db/{$serendipity['dbType']}.inc.php"); // For shared installations, probe the file on include path //include_once(S9Y_INCLUDE_PATH . 'include/db/db.inc.php'); + if (function_exists('serendipity_db_query')) { + serendipity_db_probe($_POST, $errs); + } return (count($errs) > 0 ? $errs : ''); }