Skip to content

Commit 80d4e3d

Browse files
committed
Prepare 1.5.4
1 parent fe7ea51 commit 80d4e3d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
CHANGELOG
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+
414
17/09/2014: Version 1.5.3
515
-----------------------
616

lib/autoload/sfCoreAutoload.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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.

lib/log/sfAggregateLogger.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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
}

0 commit comments

Comments
 (0)