Opened 5 years ago
Closed 5 years ago
#8082 closed defect (bug) (fixed)
Port Magpie from Snoopy to WP HTTP Request API
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.7 |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | |
| Cc: |
Description
Since Snoopy is unmaintained and has had security problems, let's move to our internal request API.
Attachments (1)
Change History (6)
comment:2
jacobsantos — 5 years ago
$response is going to have a notice attached to it because you haven't created the variable before using it.
There should be before it is used:
$response = (object) array();
comment:3
jacobsantos — 5 years ago
or $response = new stdClass; to match $res = new stdClass; in the error condition.
comment:4
jacobsantos — 5 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Fix notice before it comes up.
Note: See
TracTickets for help on using
tickets.

(In [9553]) Port Magpie from Snoopy to WP HTTP Request API. fixes #8082