Changeset 1198119
- Timestamp:
- 07/13/2015 03:46:54 PM (10 years ago)
- Location:
- pushpress/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pushpress/trunk/class-pushpress.php
r701079 r1198119 301 301 } 302 302 303 $response = wp_ remote_get( $url, array(303 $response = wp_safe_remote_get( $url, array( 304 304 'sslverify' => FALSE, 305 305 'timeout' => $this->http_timeout, -
pushpress/trunk/readme.txt
r1061508 r1198119 4 4 Tags: pubsubhubbub, push, WordPress.com 5 5 Requires at least: 2.9 6 Tested up to: 4. 16 Tested up to: 4.2 7 7 License: GPLv2 8 Stable tag: 0.1. 7.28 Stable tag: 0.1.8 9 9 10 10 Add PubSubHubbub support to your WordPress site, with a built in hub. … … 31 31 32 32 == Changelog == 33 34 = 0.1.8 = 35 * Use wp_safe_remote_*() instead of wp_remote_*() 33 36 34 37 = 0.1.7.2 = -
pushpress/trunk/send-ping.php
r389973 r1198119 70 70 } 71 71 72 $response = wp_ remote_post( $callback, $remote_opt );72 $response = wp_safe_remote_post( $callback, $remote_opt ); 73 73 74 74 // look for failures
Note: See TracChangeset
for help on using the changeset viewer.