Skip to content

Commit

Permalink
Fix invalid charset in installer
Browse files Browse the repository at this point in the history
Fix invalid fallback utf8 charset in installer
  • Loading branch information
samerton committed Apr 16, 2017
1 parent d038927 commit a8be085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/installation/views/installer.view.php
Expand Up @@ -274,7 +274,7 @@
<?php
try {
if(isset($_SESSION['charset'])) $charset = $_SESSION['charset'];
else $charset = 'utf8_unicode_ci';
else $charset = 'utf8';

$queries = new Queries();
$queries->dbInitialise($charset);
Expand Down

0 comments on commit a8be085

Please sign in to comment.