From 62ac58127a271e2468bee4f98f91d7e164ce5298 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 6 Jun 2011 18:04:44 +0200 Subject: [PATCH] tweaked previous commit --- UPDATE.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/UPDATE.md b/UPDATE.md index 088b0eced2..18a9073532 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -108,6 +108,12 @@ beta3 to beta4 {{ form_label(form.name, 'Custom label', { 'attr': {'class': 'name_field'} }) }} ``` +* In order to use Swiftmailer, you should now register its "init.php" file via + the autoloader ("app/autoloader.php") and remove the `Swift_` prefix from + the autoloader. For an example on how this should be done, see the Standard + Distribution + [autoload.php](https://github.com/symfony/symfony-standard/blob/v2.0.0BETA4/app/autoload.php#L29). + beta2 to beta3 -------------- @@ -130,14 +136,6 @@ beta2 to beta3 debug: true file_cache_dir: /foo -* In order to use Swiftmailer, you should now register its "init.php" - file via the autoloader ("app/autoloader.php") and remove the `Swift_` - prefix from the autoloader. For an example on how - this should be done, see the Standard Distribution - [autoload.php](https://github.com/symfony/symfony-standard/blob/v2.0.0BETA3/app/autoload.php#L18) - or the [change](https://github.com/symfony/symfony-standard/commit/69a78d30b07b5563ba972f2cc8f43326f64db8e2#app/autoload.php) - that was made to that file. - beta1 to beta2 --------------