Changeset 3490612
- Timestamp:
- 03/25/2026 07:32:06 AM (10 days ago)
- Location:
- auto-podcast-import
- Files:
-
- 30 added
- 3 edited
-
tags/1.0.20 (added)
-
tags/1.0.20/assets (added)
-
tags/1.0.20/assets/css (added)
-
tags/1.0.20/assets/css/admin.css (added)
-
tags/1.0.20/assets/css/index.php (added)
-
tags/1.0.20/assets/images (added)
-
tags/1.0.20/assets/images/loader.gif (added)
-
tags/1.0.20/assets/index.php (added)
-
tags/1.0.20/assets/js (added)
-
tags/1.0.20/assets/js/admin.js (added)
-
tags/1.0.20/assets/js/index.php (added)
-
tags/1.0.20/auto-podcast-import.php (added)
-
tags/1.0.20/functions.php (added)
-
tags/1.0.20/inc (added)
-
tags/1.0.20/inc/admin_menu.php (added)
-
tags/1.0.20/inc/cron.php (added)
-
tags/1.0.20/inc/feed.php (added)
-
tags/1.0.20/inc/filters.php (added)
-
tags/1.0.20/inc/index.php (added)
-
tags/1.0.20/inc/post_type.php (added)
-
tags/1.0.20/index.php (added)
-
tags/1.0.20/languages (added)
-
tags/1.0.20/languages/auto-podcast-import-ar_SA.mo (added)
-
tags/1.0.20/languages/auto-podcast-import-ar_SA.po (added)
-
tags/1.0.20/languages/auto-podcast-import-he_IL.mo (added)
-
tags/1.0.20/languages/auto-podcast-import-he_IL.po (added)
-
tags/1.0.20/languages/auto-podcast-import.pot (added)
-
tags/1.0.20/languages/index.php (added)
-
tags/1.0.20/main.php (added)
-
tags/1.0.20/readme.txt (added)
-
trunk/auto-podcast-import.php (modified) (2 diffs)
-
trunk/inc/feed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
auto-podcast-import/trunk/auto-podcast-import.php
r3490605 r3490612 4 4 * Plugin URI: https://wordpress.org/plugins/auto-podcast-import/ 5 5 * Description: Import your podcast feed, automatically from any supported podcast provider. 6 * Version: 1.0. 196 * Version: 1.0.20 7 7 * Requires at least: 6.1.0 8 8 * Requires PHP: 7.4 … … 16 16 defined( 'ABSPATH' ) || exit; 17 17 18 define('AUPI_VER','1.0. 19');18 define('AUPI_VER','1.0.20'); 19 19 define('AUPI_SLUG','aupi'); 20 20 -
auto-podcast-import/trunk/inc/feed.php
r3490605 r3490612 43 43 public function parseXml($url){ 44 44 45 if(strpos($url,'?') !== false){ 46 $url = $url.'&nocache='.time(); 47 }else{ 48 $url = $url.'?nocache='.time(); 49 } 45 // Ensure we handle the nocache param cleanly 46 $url = add_query_arg( 'nocache', time(), $this->feed['feed_url'] ); 47 48 50 49 51 50 $args = array( … … 320 319 $args['post_title']= $feed_title; 321 320 $args['post_content']=$postContent; 322 $args['post_date'] = !empty($x['pubDate']) ? gmdate('Y-m-d H:i:s', strtotime(wp_kses_post($x['pubDate']))) : gmdate('Y-m-d H:i:s'); 323 321 322 $args['post_date'] = $date_local; 323 $args['post_date_gmt'] = $date_gmt; 324 324 325 if(empty($args['post_content']) && !empty($x['description'])){ 325 326 $args['post_content']=wp_kses_post($x['description']); -
auto-podcast-import/trunk/readme.txt
r3490605 r3490612 7 7 Requires PHP: 7.4 8 8 Tested up to: 6.9 9 Stable tag: 1.0. 199 Stable tag: 1.0.20 10 10 Import your podcast feed, automatically from any supported podcast provider. 11 11 … … 79 79 80 80 == Changelog == 81 = 1.0.20 = 82 * Ensure we handle the nocache param cleanly 83 81 84 = 1.0.19 = 82 85 * Corrected timezone synchronization
Note: See TracChangeset
for help on using the changeset viewer.