From 215f4a8ebe717ba646be00fca8519cf768a902f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 26 Jan 2016 14:30:08 +0100 Subject: [PATCH] Can not use PMA_fatalError when including fails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- setup/lib/common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/lib/common.inc.php b/setup/lib/common.inc.php index 47443217ea..10bfdb8b44 100644 --- a/setup/lib/common.inc.php +++ b/setup/lib/common.inc.php @@ -15,7 +15,7 @@ define('PMA_SETUP', true); chdir('..'); if (!file_exists('./libraries/common.inc.php')) { - PMA_fatalError('Bad invocation!'); + die('Bad invocation!'); } require_once './libraries/common.inc.php';