Plugin Directory

Changeset 690041


Ignore:
Timestamp:
04/01/2013 01:40:46 PM (13 years ago)
Author:
mdjekic
Message:

Applied a small fix for handling potential SSL problems reported by a user. This will upgrade the plugin to version 1.0.1

Location:
inline-tweets
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • inline-tweets/trunk/inline-tweets.php

    r690012 r690041  
    2323  Plugin URI: http://projects.djekic.net/inline-tweets
    2424  Description: Embed latest tweet(s) or a specific tweet in any page, post or text widget and apply your custom styles.
    25   Version: 1.0
     25  Version: 1.0.1
    2626  Author: Miloš Đekić
    2727  Author URI: http://milos.djekic.net
     
    8686    curl_setopt($ch, CURLOPT_URL,$url);
    8787    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
     88
     89    // @since 1.0.1 - handle SSL issue
     90    curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
     91    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
    8892
    8993    // get result
  • inline-tweets/trunk/readme.txt

    r690012 r690041  
    88Requires at least: 2.7
    99Tested up to: 3.5.1
    10 Stable tag: 1
     10Stable tag: 1.0.1
    1111
    1212Embed latest tweet(s) or a specific tweet in any page, post or text widget and apply your custom styles.
     
    7878== Changelog ==
    7979
     80= 1.0.1 =
     81* Added a small fix to handle potential SSL problems when fetching tweets
     82
    8083= 1.0 =
    8184* First version - inline tweets on.
Note: See TracChangeset for help on using the changeset viewer.