Plugin Directory

Changeset 1198119


Ignore:
Timestamp:
07/13/2015 03:46:54 PM (10 years ago)
Author:
josephscott
Message:

Tag: 0.1.8

  • Use wp_safe_remote_*() instead of wp_remote_*()
Location:
pushpress/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pushpress/trunk/class-pushpress.php

    r701079 r1198119  
    301301        }
    302302
    303         $response = wp_remote_get( $url, array(
     303        $response = wp_safe_remote_get( $url, array(
    304304            'sslverify'     => FALSE,
    305305            'timeout'       => $this->http_timeout,
  • pushpress/trunk/readme.txt

    r1061508 r1198119  
    44Tags: pubsubhubbub, push, WordPress.com
    55Requires at least: 2.9
    6 Tested up to: 4.1
     6Tested up to: 4.2
    77License: GPLv2
    8 Stable tag: 0.1.7.2
     8Stable tag: 0.1.8
    99
    1010Add PubSubHubbub support to your WordPress site, with a built in hub.
     
    3131
    3232== Changelog ==
     33
     34= 0.1.8 =
     35* Use wp_safe_remote_*() instead of wp_remote_*()
    3336
    3437= 0.1.7.2 =
  • pushpress/trunk/send-ping.php

    r389973 r1198119  
    7070        }
    7171
    72         $response = wp_remote_post( $callback, $remote_opt );
     72        $response = wp_safe_remote_post( $callback, $remote_opt );
    7373
    7474        // look for failures
Note: See TracChangeset for help on using the changeset viewer.