We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Colors::colorize()
1 parent c6f72ea commit 48b84a3Copy full SHA for 48b84a3
lib/cli/Colors.php
@@ -127,13 +127,13 @@ static public function colorize($string, $colored = null) {
127
return $return;
128
}
129
130
- $string = str_replace('%%', '% ', $string);
+ $string = str_replace('%%', '%¾', $string);
131
132
foreach (self::getColors() as $key => $value) {
133
$string = str_replace($key, self::color($value), $string);
134
135
136
- $string = str_replace('% ', '%', $string);
+ $string = str_replace('%¾', '%', $string);
137
self::cacheString($passed, $string, $colored);
138
139
return $string;
0 commit comments