Skip to content

Commit

Permalink
exclude CRLF from escaping to be able to return multiline output
Browse files Browse the repository at this point in the history
  • Loading branch information
WanWizard committed Sep 14, 2016
1 parent 07884b9 commit 206b4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private function main()
}
elseif (is_string($ret))
{
echo addcslashes($ret, "\0..\37\177..\377");
echo addcslashes($ret, "\0..\11\13\14\16..\37\177..\377");
}
elseif ( ! is_null($ret))
{
Expand Down

0 comments on commit 206b4bd

Please sign in to comment.