Subject: | Typo causes invalid return value |
In the request_method function, content is returned as follows:
return $res->content, "\n";
This causes return values to be 'blank', containing only the newline.
Changing it to
return $res->content. "\n";
will return the actual content.
Tested against return data from FogBugz Version 6.1.13 (DB 629)