Opened 17 years ago
Closed 17 years ago
#8082 closed defect (bug) (fixed)
Port Magpie from Snoopy to WP HTTP Request API
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.7 | Priority: | normal |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
Since Snoopy is unmaintained and has had security problems, let's move to our internal request API.
Attachments (1)
Change History (6)
#2
@
17 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();
#3
@
17 years ago
or $response = new stdClass;
to match $res = new stdClass;
in the error condition.
Note: See
TracTickets for help on using
tickets.
(In [9553]) Port Magpie from Snoopy to WP HTTP Request API. fixes #8082