From 63cb47e1f58ed2428d6dc3aa9ffa880854e76dcb Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Tue, 19 Feb 2013 23:27:11 +0400 Subject: [PATCH] fixed assignment --- framework/util/ConsoleColor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/util/ConsoleColor.php b/framework/util/ConsoleColor.php index 1fadc40..7cc7897 100644 --- a/framework/util/ConsoleColor.php +++ b/framework/util/ConsoleColor.php @@ -359,7 +359,7 @@ class ConsoleColor } $styleString[] = array(); foreach($styleA as $name => $content) { - if ($name = 'text-decoration') { + if ($name === 'text-decoration') { $content = implode(' ', $content); } $styleString[] = $name.':'.$content;