diff --git a/get_settings.php b/get_settings.php index a1ad9a5a..fc526b62 100644 --- a/get_settings.php +++ b/get_settings.php @@ -89,7 +89,8 @@ $config_module_enable_ticketing = intval($row['config_module_enable_ticketing']) $config_module_enable_accounting = intval($row['config_module_enable_accounting']); $config_client_portal_enable = intval($row['config_client_portal_enable']); -// Login key +// Login +$config_login_message = $row['config_login_message']; $config_login_key_required = $row['config_login_key_required']; $config_login_key_secret = $row['config_login_key_secret']; diff --git a/login.php b/login.php index 0478cdd9..5e106ae1 100644 --- a/login.php +++ b/login.php @@ -37,6 +37,7 @@ $row = mysqli_fetch_array($sql_settings); $company_name = $row['company_name']; $company_logo = $row['company_logo']; $config_start_page = nullable_htmlentities($row['config_start_page']); +$config_login_message = nullable_htmlentities($row['config_login_message']); // Mail $config_smtp_host = $row['config_smtp_host']; @@ -266,9 +267,14 @@ if (isset($_POST['login'])) {