Skip to content

Commit e59e20a

Browse files
Merge pull request metaregistrar#455 from exonet/lha/missing-argument
Fix fatal in eppConnection::readResponse() from missing eppRequest argument
2 parents e5cbdc5 + 0dae374 commit e59e20a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Protocols/EPP/eppConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ public function writeRequest(eppRequest $content)
765765
*/
766766
public function readResponse()
767767
{
768-
$response = new eppResponse();
768+
$response = new eppResponse(new eppRequest());
769769
$xml = $this->read(true);
770770
if (strlen($xml)) {
771771
if ($response->loadXML($xml)) {

0 commit comments

Comments
 (0)