1
0
mirror of synced 2024-12-14 07:06:04 +03:00

fixed a typo

This commit is contained in:
fabien 2007-02-07 13:09:12 +00:00
parent 572ad3befe
commit eeedb43c4c

View File

@ -113,7 +113,7 @@ class Doctrine_Export_Mysql extends Doctrine_Export
$optionStrings['comment'] = 'COMMENT = ' . $this->dbh->quote($options['comment'], 'text');
}
if (isset($options['charset'])) {
$optionsSting['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset'];
$optionStrings['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset'];
if (isset($options['collate'])) {
$optionStrings['charset'].= ' COLLATE ' . $options['collate'];
}