From 27d01ba171c37fcdd53a78c829b0fae7ef56fa46 Mon Sep 17 00:00:00 2001 From: Alexandros Ioannides Date: Thu, 28 Dec 2017 18:08:55 +0200 Subject: [PATCH] Fix --- install/ubuntu/16.04/pma/config.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/ubuntu/16.04/pma/config.inc.php b/install/ubuntu/16.04/pma/config.inc.php index a643a065..d8a903e4 100644 --- a/install/ubuntu/16.04/pma/config.inc.php +++ b/install/ubuntu/16.04/pma/config.inc.php @@ -17,6 +17,7 @@ * (also on the filesystem level). */ +if (!function_exists('check_file_access')) { function check_file_access($path) { if (is_readable($path)) { @@ -29,6 +30,7 @@ function check_file_access($path) return false; } } +} // Load secret generated on postinst if (check_file_access('/var/lib/phpmyadmin/blowfish_secret.inc.php')) {