Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/typecho/typecho
Browse files Browse the repository at this point in the history
  • Loading branch information
joyqi committed Oct 10, 2014
2 parents 74313b1 + b7013f3 commit ecc8c80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions var/Typecho/Http/Client/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ public function send($url)
}
}

$this->reponseBody = implode("\n", $lines);
return $this->reponseBody;
$this->responseBody = implode("\n", $lines);
return $this->responseBody;
}

/**
Expand Down Expand Up @@ -411,7 +411,7 @@ public function getResponseStatus()
*/
public function getResponseBody()
{
return $this->reponseBody;
return $this->responseBody;
}

/**
Expand Down

0 comments on commit ecc8c80

Please sign in to comment.