From 835b076c9990e42b35fb0343e59c43e14fd116cf Mon Sep 17 00:00:00 2001 From: onli Date: Thu, 13 Sep 2018 14:27:51 +0200 Subject: [PATCH] php 7.2: Remove invalid constant check (#563) --- include/functions_installer.inc.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/functions_installer.inc.php b/include/functions_installer.inc.php index 02fa7841..3deb0042 100644 --- a/include/functions_installer.inc.php +++ b/include/functions_installer.inc.php @@ -647,10 +647,6 @@ function serendipity_checkInstallation() { // For shared installations, probe the file on include path //include_once(S9Y_INCLUDE_PATH . 'include/db/db.inc.php'); - if (S9Y_DB_INCLUDED) { - serendipity_db_probe($_POST, $errs); - } - return (count($errs) > 0 ? $errs : ''); }