Skip to content

Commit

Permalink
line breaks require double quotes: single quotes wont work. Fixes tim…
Browse files Browse the repository at this point in the history
…eout when using TLS
  • Loading branch information
creativedutchmen committed Mar 11, 2012
1 parent ebe7234 commit a555501
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extensions/debugdevkit
2 changes: 1 addition & 1 deletion extensions/jit_image_manipulation
2 changes: 1 addition & 1 deletion symphony/lib/toolkit/class.smtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ protected function _tls(){
protected function _send($request){
$this->checkConnection();

$result = fwrite($this->_connection, $request . '\r\n');
$result = fwrite($this->_connection, $request . "\r\n");
if($result === false){
throw new SMTPException(__('Could not send request: %s', array($request)));
}
Expand Down

0 comments on commit a555501

Please sign in to comment.