From baa025db95b296a524e60919ff828de6ae2b6608 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 18 Nov 2013 16:53:52 -0800 Subject: [PATCH] Added message about DB charset config. --- e107_admin/db.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e107_admin/db.php b/e107_admin/db.php index 0ee7b8055..d22f75be8 100644 --- a/e107_admin/db.php +++ b/e107_admin/db.php @@ -711,6 +711,9 @@ class system_tools //$message .= "
Please now add the following line to your e107_config.php file:
\$mySQLcharset = 'utf8';"; $mes->add($message, E_MESSAGE_SUCCESS); + $mes->addSuccess("Please make sure you have the following line in your e107_config.php file:"); + $mes->addSuccess('$mySQLcharset = "utf8";'); + } echo $mes->render();