Index: branches/unlabeled/unlabeled-1.9.2/core/install.php =================================================================== diff -u -N -r8702 -r8707 --- branches/unlabeled/unlabeled-1.9.2/core/install.php (.../install.php) (revision 8702) +++ branches/unlabeled/unlabeled-1.9.2/core/install.php (.../install.php) (revision 8707) @@ -781,7 +781,7 @@ continue; // usually last line } - if (substr($sql, 0, 13) == 'CREATE TABLE ') { + if (substr($sql, 0, 13) == 'CREATE TABLE ' && $this->systemConfig['Database']['DBCollation']) { // it is CREATE TABLE statement -> add collation $sql .= ' COLLATE \''.$this->systemConfig['Database']['DBCollation'].'\''; }