From 2650d26130fc414e77bdf3de571dadeb95056023 Mon Sep 17 00:00:00 2001 From: Romain Gautier Date: Fri, 4 Nov 2016 12:42:24 +0100 Subject: [PATCH] fixed for php7 --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 509fb92..ec6bd18 100644 --- a/index.php +++ b/index.php @@ -628,7 +628,7 @@ function getVhosts($vhost_config_path) $php_version = phpversion(); -preg_match("([0-9\.]+)", @mysql_get_server_info(), $match); +preg_match("([0-9\.]+)", @mysqli_get_server_info(), $match); $mysql_version = isset($match[0]) ? $match[0] : null;