Skip to content
Snippets Groups Projects
Commit 32fecbd7 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Fix wrong default character set in the site configuration

parent 066f3075
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ if (!isset($GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'])) { ...@@ -11,7 +11,7 @@ if (!isset($GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'])) {
$GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'] = []; $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'] = [];
} }
$GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default'] = [ $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default'] = [
'charset' => 'utf-8', 'charset' => 'utf8',
'dbname' => 'typo3', 'dbname' => 'typo3',
'driver' => 'mysqli', 'driver' => 'mysqli',
'host' => '127.0.0.1', 'host' => '127.0.0.1',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment