From 05bf2d20134d28c99e0ef022dd396fdf9d8eeb04 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sun, 6 May 2018 23:58:01 +0200 Subject: [PATCH] if unconfigured, recommend to edit config.local.php ... instead of config.inc.php (idea based on comments on https://github.com/postfixadmin/postfixadmin/commit/7c38bdd871e31b9bdd7828a7310019a0d36f5807 ) --- common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.php b/common.php index 3ee28987..58a3a145 100644 --- a/common.php +++ b/common.php @@ -61,7 +61,7 @@ require_once("$incpath/config.inc.php"); if (isset($CONF['configured'])) { if ($CONF['configured'] == false) { - die("Please edit config.inc.php - change \$CONF['configured'] to true after setting your database settings"); + die("Please edit config.local.php - change \$CONF['configured'] to true after setting your database settings"); } }