Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge remote branch 'upstream/master' into ZF-10246
Browse files Browse the repository at this point in the history
  • Loading branch information
Padraic Brady committed Aug 1, 2010
6 parents d59be1f + 643e2df + a49e8f2 + 08fd26d + b52d5dc + a9438e2 commit de5abc1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Decoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,19 +364,19 @@ protected function _getNextToken()
$result .= '/';
break;
case 'b' :
$result .= chr(8);
$result .= "\x08";
break;
case 'f' :
$result .= chr(12);
$result .= "\x0c";
break;
case 'n' :
$result .= chr(10);
$result .= "\x0a";
break;
case 'r' :
$result .= chr(13);
$result .= "\x0d";
break;
case 't' :
$result .= chr(9);
$result .= "\x09";
break;
case '\'' :
$result .= '\'';
Expand Down

0 comments on commit de5abc1

Please sign in to comment.