Skip to content

Commit

Permalink
Fix for #3
Browse files Browse the repository at this point in the history
  • Loading branch information
mclarkson committed Mar 8, 2014
1 parent dc36f93 commit 07927d3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion SOURCES/nagrestconf-1/rest/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,14 @@ public function processRequest()
"," => "`",
"\\" => "\\\\",
"%2c" => "%60",
"%2C" => "%60" ) );
"%2C" => "%60",
# Undo json_decode escape char decoding
"\n" => "\\n",
"\r" => "\\r",
"\b" => "\\b",
"\f" => "\\f",
"\t" => "\\t",
) );
$item = trim( $item );
}
}
Expand Down

0 comments on commit 07927d3

Please sign in to comment.