Skip to content
Snippets Groups Projects
Commit cb59c355 authored by Jonas Götze's avatar Jonas Götze Committed by Andreas Wolf
Browse files

[FOLLOWUP][FEATURE] Report wrong database character set

This adds the Feature ReST-File and fixes to small whitespace issues

Resolves: #74038
Releases: master
Change-Id: I885db774de249c1e9bd9963c1266934884e5c396
Reviewed-on: https://review.typo3.org/47064


Reviewed-by: default avatarNicole Cordes <typo3@cordes.co>
Tested-by: default avatarNicole Cordes <typo3@cordes.co>
Reviewed-by: default avatarAndreas Wolf <andreas.wolf@typo3.org>
Tested-by: default avatarAndreas Wolf <andreas.wolf@typo3.org>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
parent e643ec0f
Branches
Tags
No related merge requests found
============================================================
Feature: #74038 - Report for checking database character set
============================================================
Description
===========
If a database has e.g. latin1 as default character set, new tables or fields created by TYPO3 will be created
with this default charset as utf-8 is not enforced.
A report has been added that checks the default charset and warns administrators if a wrong charset is used.
Impact
======
If the default database character set is not utf-8, the report warns administrators about a wrong charset.
\ No newline at end of file
......@@ -286,13 +286,13 @@ class ConfigurationStatus implements StatusProviderInterface
$statusValue = $this->getLanguageService()->getLL('status_ok');
if ($key !== 'character_set_database') {
$message = sprintf($this->getLanguageService()->getLL('status_MysqlDatabaseCharacterSet_CheckFailed'),$key);
$message = sprintf($this->getLanguageService()->getLL('status_MysqlDatabaseCharacterSet_CheckFailed'), $key);
$severity = ReportStatus::WARNING;
$statusValue = $this->getLanguageService()->getLL('status_checkFailed');
}
// also allow utf8mb4
if (substr($value, 0, 4) !== 'utf8') {
$message = sprintf($this->getLanguageService()->getLL('status_MysqlDatabaseCharacterSet_Unsupported'),$value);
$message = sprintf($this->getLanguageService()->getLL('status_MysqlDatabaseCharacterSet_Unsupported'), $value);
$severity = ReportStatus::ERROR;
$statusValue = $this->getLanguageService()->getLL('status_wrongValue');
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment