Plugin Directory

Changeset 2059113


Ignore:
Timestamp:
03/28/2019 05:13:00 PM (7 years ago)
Author:
libsyn
Message:

updates for 1.0.1.8

Location:
libsyn-podcasting/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • libsyn-podcasting/trunk/admin/lib/Libsyn.php

    r2059098 r2059113  
    44    protected $text_dom = "libsyn-nmp";
    55    protected $plugin_name = "Libsyn/Wordpress";
    6     protected $plugin_version = "1.0.1.9";
     6    protected $plugin_version = "1.0.1.8";
    77    protected $api_table_name = "libsyn_podcast_plugin";
    88    protected $api_base_uri = "https://api.libsyn.com";
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Post.php

    r2059098 r2059113  
    20282028        $item['itunes_episode_author'] = get_post_meta($post->ID, 'libsyn-post-episode-itunes-episode-author', true);
    20292029        $item['update_id3'] = get_post_meta($post->ID, 'libsyn-post-episode-update-id3', true);
    2030         if ( !empty($item['update_id3']) ) {//Attempt to extend timeout for post callback
    2031             $utilities = new \Libsyn\Utilities();
    2032             $utilities->safe_set_time_limit(120);
    2033         }
    20342030        $item['item_keywords'] = get_post_meta($post->ID, 'libsyn-post-episode-keywords', true);
    20352031       
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Service.php

    r2059098 r2059113  
    540540                ,'auth_namespace' => 'true'
    541541            );
    542             $url = $this->api_base_uri . "/oauth/authorize?" . http_build_query($urlParams) . '&redirect_url=' . str_replace('%2F', '/', $decoded_redirectUri);
     542            $url = $this->api_base_uri . "/oauth/authorize?" . http_build_query($urlParams) . '&redirect_url=' . str_replace('%2F', '/', urldecode($decoded_redirectUri));
    543543            $checkUrl = $this->checkUrl($url);
    544544            if ( $checkUrl ) {
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Logger.php

    r2059098 r2059113  
    321321    /**
    322322     * Format the log line.
    323      * YYYY-mm-dd HH:ii:ss.uuuuuu  [loglevel]  [channel] Log message content  {"Optional":"JSON Contextual Support Data"}  {"Optional":"Exception Data"}
     323     * YYYY-mm-dd HH:ii:ss.uuuuuu  [loglevel]  [channel]  [pid:##]  Log message content  {"Optional":"JSON Contextual Support Data"}  {"Optional":"Exception Data"}
    324324     *
    325325     * @since 1.0.1.6
    326326     * @param  string $level
     327     * @param  int    $pid
    327328     * @param  string $message
    328329     * @param  string $data
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Utilities.php

    r2059098 r2059113  
    701701           
    702702            // Setting custom timeout for the HTTP request
    703             add_filter('http_request_timeout', '\Libsyn\Utilities::libsyn_custom_http_request_timeout', 101 );
     703            add_filter('http_request_timeout', 'libsyn_custom_http_request_timeout', 101 );
    704704           
    705705        } catch (Exception $e) {
  • libsyn-podcasting/trunk/libsyn-podcasting.php

    r2059098 r2059113  
    44Plugin URI: https://wordpress.org/plugins/libsyn-podcasting/
    55Description: Post or edit Libsyn Podcast episodes directly through Wordpress.
    6 Version: 1.0.1.9
     6Version: 1.0.1.8
    77Author: Libsyn
    88Author URI: https://www.libsyn.com
  • libsyn-podcasting/trunk/readme.txt

    r2059098 r2059113  
    44Requires at least: 4.0
    55Tested up to: 5.1.1
    6 Stable tag: 1.0.1.9
     6Stable tag: 1.0.1.8
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    4545
    4646== Changelog ==
    47 
    48 = 1.0.1.9 =
    49 * Fixed a bug that could sometimes cause new posts to not embed the player properly.
    5047
    5148= 1.0.1.8 =
Note: See TracChangeset for help on using the changeset viewer.