Skip to content

Commit

Permalink
Fix to error reporting bug on QEmailServer class
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeho committed Nov 17, 2010
1 parent ad4200a commit 35e9e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/qcodo/_core/framework/QEmailServer.class.php
Expand Up @@ -270,7 +270,7 @@ protected static function ReceiveResponse($strExpectedStatusCode, $strCurrentAct

$strExpectedStatusCode = trim($strExpectedStatusCode) . ' ';
if (substr($strResponse, 0, 4) != $strExpectedStatusCode) {
throw new QEmailException(sprintf('Unexpected Response from SMTP Server on %s: %s', $strErrorMessage, $strFullResponse));
throw new QEmailException(sprintf('Unexpected Response from SMTP Server on %s: %s', $strCurrentAction, $strFullResponse));
}
}
}
Expand Down

0 comments on commit 35e9e9e

Please sign in to comment.