Skip to content

Commit

Permalink
More whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jan 14, 2010
1 parent 5395397 commit c196c2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/libs/i18n.php
Expand Up @@ -526,11 +526,11 @@ function __parseLiteralValue($string) {
$string = $string[1];
if (substr($string, 0, 2) === $this->__escape . 'x') {
$delimiter = $this->__escape . 'x';
return join('',array_map('chr', array_map('hexdec',array_filter(explode($delimiter, $string)))));
return join('', array_map('chr', array_map('hexdec',array_filter(explode($delimiter, $string)))));
}
if (substr($string, 0, 2) === $this->__escape . 'd') {
$delimiter = $this->__escape . 'd';
return join('',array_map('chr', array_filter(explode($delimiter, $string))));
return join('', array_map('chr', array_filter(explode($delimiter, $string))));
}
if ($string[0] === $this->__escape && isset($string[1]) && is_numeric($string[1])) {
$delimiter = $this->__escape;
Expand Down

0 comments on commit c196c2c

Please sign in to comment.