File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4+ 15/06/2015: Version 1.5.4
5+ -----------------------
6+
7+ * Add blob support to yaml files #38
8+ * Ability to integrate a psr compliant log #71
9+ * Add OPTIONS method in sfRequest #75
10+ * Add multiple file input #86
11+ * Allows newer versions of Swiftmailer #90
12+ * Allow to specify environment in sfI18nExtractTask #92
13+
41417/09/2014: Version 1.5.3
515-----------------------
616
Original file line number Diff line number Diff line change 1111/**
1212 * The current symfony version.
1313 */
14- define ('SYMFONY_VERSION ' , '1.5.4-DEV ' );
14+ define ('SYMFONY_VERSION ' , '1.5.4 ' );
1515
1616/**
1717 * sfCoreAutoload class.
Original file line number Diff line number Diff line change 33/*
44 * This file is part of the symfony package.
55 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
6- *
6+ *
77 * For the full copyright and license information, please view the LICENSE
88 * file that was distributed with this source code.
99 */
@@ -36,7 +36,7 @@ class sfAggregateLogger extends sfLogger
3636 public function initialize (sfEventDispatcher $ dispatcher , $ options = array ())
3737 {
3838 $ this ->dispatcher = $ dispatcher ;
39-
39+
4040 if (isset ($ options ['loggers ' ]))
4141 {
4242 if (!is_array ($ options ['loggers ' ]))
@@ -106,7 +106,7 @@ public function shutdown()
106106 {
107107 foreach ($ this ->loggers as $ logger )
108108 {
109- if ($ logger instanceof sfLogger)
109+ if ($ logger instanceof sfLogger)
110110 {
111111 $ logger ->shutdown ();
112112 }
You can’t perform that action at this time.
0 commit comments