Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Fix php 7 POST request bug #476

Merged
merged 1 commit into from
Oct 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix php 7 POST request bug #473
  • Loading branch information
andygup committed Apr 12, 2018
commit 1cfa168a63b6f47a58de626c146e81a4d25a0394
2 changes: 1 addition & 1 deletion PHP/proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ public function proxyGet($url = null) {
return;
}

public function proxyPost($url, $params)
public function proxyPost($url = null, $params = null)
{
$this->response = null;

Expand Down