From 2a976066eb1f20cc900cff8e74db9ccfa8b40d4d Mon Sep 17 00:00:00 2001 From: Kirk Mayo Date: Wed, 27 Jun 2012 10:50:17 +1200 Subject: [PATCH] MINOR: open/7523 added a note relating to versions and added a missing quote to the changelog for 3.0 --- docs/en/changelogs/3.0.0.md | 2 +- docs/en/topics/configuration.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/changelogs/3.0.0.md b/docs/en/changelogs/3.0.0.md index 2f687145b..c87047078 100644 --- a/docs/en/changelogs/3.0.0.md +++ b/docs/en/changelogs/3.0.0.md @@ -251,7 +251,7 @@ unless the `FullTextSearch` feature is enabled. In order to disable this behavio you have to add the following code to your `_config.php` BEFORE running a `dev/build`: :::php - DataObject::$create_table_options['MySQLDatabase] = 'ENGINE=MyISAM'; + DataObject::$create_table_options['MySQLDatabase'] = 'ENGINE=MyISAM'; As with any SilverStripe upgrade, we recommend database backups before calling `dev/build`. See [mysql.com](http://dev.mysql.com/doc/refman/5.5/en/converting-tables-to-innodb.html) for details on the conversion. diff --git a/docs/en/topics/configuration.md b/docs/en/topics/configuration.md index aac282f41..085c86677 100644 --- a/docs/en/topics/configuration.md +++ b/docs/en/topics/configuration.md @@ -39,7 +39,7 @@ incomplete - please add to it** *Try to keep it in alphabetical order too! :)* | BlogEntry::allow_wysiwyg_editing(); | | Enable rich text editing for blog posts. | | ContentNegotiator::set_encoding(string $encoding) | | The encoding charset to use - UTF-8 by default | | ContentNegotiator::disable() | | Disables the negotiation of content type -usually used to stop it from rewriting the DOCTYPE of the document - | DataObject::$create_table_options['MySQLDatabase] = 'ENGINE=MyISAM';|| Set the default database engine to MyISAM. | + | DataObject::$create_table_options['MySQLDatabase'] = 'ENGINE=MyISAM';| | Set the default database engine to MyISAM (versions 2.4 and below already default to MyISAM) | | Debug::send_errors_to(string $email) | | Send live errors on your site to this address (site has to be in 'live' mode using Director::set_environment_type(live) for this to occur | | Director::set_environment_type(string dev,test,live) | | Sets the environment type (e.g. dev site will show errors, live site hides them and displays a 500 error instead) | | Director::set_dev_servers(array('localhost', 'dev.mysite.com)) | | Set servers that should be run in dev mode (see [debugging](debugging)) |