Skip to content

Commit c196c2c

Browse files
committed
More whitespace fixes
1 parent 5395397 commit c196c2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cake/libs/i18n.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,11 +526,11 @@ function __parseLiteralValue($string) {
526526
$string = $string[1];
527527
if (substr($string, 0, 2) === $this->__escape . 'x') {
528528
$delimiter = $this->__escape . 'x';
529-
return join('',array_map('chr', array_map('hexdec',array_filter(explode($delimiter, $string)))));
529+
return join('', array_map('chr', array_map('hexdec',array_filter(explode($delimiter, $string)))));
530530
}
531531
if (substr($string, 0, 2) === $this->__escape . 'd') {
532532
$delimiter = $this->__escape . 'd';
533-
return join('',array_map('chr', array_filter(explode($delimiter, $string))));
533+
return join('', array_map('chr', array_filter(explode($delimiter, $string))));
534534
}
535535
if ($string[0] === $this->__escape && isset($string[1]) && is_numeric($string[1])) {
536536
$delimiter = $this->__escape;

0 commit comments

Comments
 (0)