Skip to content

Commit 4f7a8b3

Browse files
committed
bug swiftmailer#450 fixed DecoratorPlugin.php for PHP 5.2 (sstok)
This PR was merged into the 5.1-dev branch. Discussion ---------- fixed DecoratorPlugin.php for PHP 5.2 fixes swiftmailer#449 Commits ------- 25eb225 fixed DecoratorPlugin.php for PHP 5.2
2 parents 82ec0cd + 25eb225 commit 4f7a8b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/classes/Swift/Plugins/DecoratorPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function __construct($replacements)
6767
*/
6868
public function setReplacements($replacements)
6969
{
70-
if (!($replacements instanceof \Swift_Plugins_Decorator_Replacements)) {
70+
if (!($replacements instanceof Swift_Plugins_Decorator_Replacements)) {
7171
$this->_replacements = (array) $replacements;
7272
} else {
7373
$this->_replacements = $replacements;

0 commit comments

Comments
 (0)