Changeset 2059113
- Timestamp:
- 03/28/2019 05:13:00 PM (7 years ago)
- Location:
- libsyn-podcasting/trunk
- Files:
-
- 7 edited
-
admin/lib/Libsyn.php (modified) (1 diff)
-
admin/lib/Libsyn/Post.php (modified) (1 diff)
-
admin/lib/Libsyn/Service.php (modified) (1 diff)
-
admin/lib/Libsyn/Service/Logger.php (modified) (1 diff)
-
admin/lib/Libsyn/Utilities.php (modified) (1 diff)
-
libsyn-podcasting.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libsyn-podcasting/trunk/admin/lib/Libsyn.php
r2059098 r2059113 4 4 protected $text_dom = "libsyn-nmp"; 5 5 protected $plugin_name = "Libsyn/Wordpress"; 6 protected $plugin_version = "1.0.1. 9";6 protected $plugin_version = "1.0.1.8"; 7 7 protected $api_table_name = "libsyn_podcast_plugin"; 8 8 protected $api_base_uri = "https://api.libsyn.com"; -
libsyn-podcasting/trunk/admin/lib/Libsyn/Post.php
r2059098 r2059113 2028 2028 $item['itunes_episode_author'] = get_post_meta($post->ID, 'libsyn-post-episode-itunes-episode-author', true); 2029 2029 $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 callback2031 $utilities = new \Libsyn\Utilities();2032 $utilities->safe_set_time_limit(120);2033 }2034 2030 $item['item_keywords'] = get_post_meta($post->ID, 'libsyn-post-episode-keywords', true); 2035 2031 -
libsyn-podcasting/trunk/admin/lib/Libsyn/Service.php
r2059098 r2059113 540 540 ,'auth_namespace' => 'true' 541 541 ); 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)); 543 543 $checkUrl = $this->checkUrl($url); 544 544 if ( $checkUrl ) { -
libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Logger.php
r2059098 r2059113 321 321 /** 322 322 * 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"} 324 324 * 325 325 * @since 1.0.1.6 326 326 * @param string $level 327 * @param int $pid 327 328 * @param string $message 328 329 * @param string $data -
libsyn-podcasting/trunk/admin/lib/Libsyn/Utilities.php
r2059098 r2059113 701 701 702 702 // 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 ); 704 704 705 705 } catch (Exception $e) { -
libsyn-podcasting/trunk/libsyn-podcasting.php
r2059098 r2059113 4 4 Plugin URI: https://wordpress.org/plugins/libsyn-podcasting/ 5 5 Description: Post or edit Libsyn Podcast episodes directly through Wordpress. 6 Version: 1.0.1. 96 Version: 1.0.1.8 7 7 Author: Libsyn 8 8 Author URI: https://www.libsyn.com -
libsyn-podcasting/trunk/readme.txt
r2059098 r2059113 4 4 Requires at least: 4.0 5 5 Tested up to: 5.1.1 6 Stable tag: 1.0.1. 96 Stable tag: 1.0.1.8 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 45 45 46 46 == Changelog == 47 48 = 1.0.1.9 =49 * Fixed a bug that could sometimes cause new posts to not embed the player properly.50 47 51 48 = 1.0.1.8 =
Note: See TracChangeset
for help on using the changeset viewer.