Skip to content

Commit

Permalink
Merge pull request zendframework#2216 from AlloVince/master
Browse files Browse the repository at this point in the history
Fixed a missing comma
  • Loading branch information
Maks3w committed Aug 22, 2012
2 parents 37c8db0 + ead6b27 commit 70c01cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Http/Client/Adapter/Socket.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public function connect($host, $port = 80, $secure = false)
throw new AdapterException\RuntimeException(sprintf(
'Unable to connect to %s:%d%s',
$host,
$port
$port,
($error ? '. Error #' . $error->getCode() . ': ' . $error->getMessage() : '')
), 0, $error);
}
Expand Down

0 comments on commit 70c01cf

Please sign in to comment.