Changeset 3352664
- Timestamp:
- 08/29/2025 01:59:49 PM (6 months ago)
- Location:
- powerpress/trunk
- Files:
-
- 4 edited
-
powerpress.php (modified) (2 diffs)
-
powerpressadmin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
powerpress/trunk/powerpress.php
r3351476 r3352664 4 4 Plugin URI: https://blubrry.com/services/powerpress-plugin/ 5 5 Description: <a href="https://blubrry.com/services/powerpress-plugin/" target="_blank">Blubrry PowerPress</a> is the No. 1 Podcasting plugin for WordPress. Developed by podcasters for podcasters; features include Simple and Advanced modes, multiple audio/video player options, subscribe to podcast tools, podcast SEO features, and more! Fully supports Apple Podcasts (previously iTunes), Google Podcasts, Spotify, and Blubrry Podcasting directories, as well as all podcast applications and clients. 6 Version: 11.13.1 06 Version: 11.13.11 7 7 Author: Blubrry 8 8 Author URI: https://blubrry.com/ … … 133 133 134 134 // WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED) 135 define('POWERPRESS_VERSION', '11.13.1 0' );135 define('POWERPRESS_VERSION', '11.13.11' ); 136 136 137 137 // Translation support: -
powerpress/trunk/powerpressadmin.php
r3351476 r3352664 4065 4065 $ssrf_valid = false; 4066 4066 } 4067 $response = wp_remote_head($url, $args); 4068 if (is_wp_error($response)) { 4069 $error_message = $response->get_error_message(); 4070 if ($error_message) { 4071 powerpress_add_error($error_message); 4067 if ($ssrf_valid) { 4068 $response = wp_remote_head($url, $args); 4069 if (is_wp_error($response)) { 4070 $error_message = $response->get_error_message(); 4071 if ($error_message) { 4072 powerpress_add_error($error_message); 4073 } 4074 $httpCode = 500; 4075 $headers = array(); 4076 } else { 4077 $headers = wp_remote_retrieve_headers($response); 4078 $httpCode = wp_remote_retrieve_response_code($response); 4072 4079 } 4073 $httpCode = 500; 4074 $headers = array(); 4080 $url = false; 4081 if ($httpCode >= 300 && $httpCode < 400) { 4082 if (isset($headers['location'])) { 4083 $url = $headers['location']; 4084 } 4085 } 4075 4086 } else { 4076 $headers = wp_remote_retrieve_headers($response); 4077 $httpCode = wp_remote_retrieve_response_code($response); 4078 } 4079 $url = false; 4080 if ($httpCode >= 300 && $httpCode < 400) { 4081 if (isset($headers['location'])) { 4082 $url = $headers['location']; 4083 } 4087 $url = false; 4084 4088 } 4085 4089 $redirect_count++; 4086 } while ($ ssrf_valid && $url != false && $redirect_count <= 12);4090 } while ($url != false && $redirect_count <= 12); 4087 4091 4088 4092 if (!$ssrf_valid) { -
powerpress/trunk/readme.txt
r3351476 r3352664 5 5 Requires PHP: 5.2 6 6 Tested up to: 6.8 7 Stable tag: 11.13.1 07 Stable tag: 11.13.11 8 8 Donate link: https://blubrry.com/services/podcast-hosting/ 9 9 License: GPLv2 or later … … 163 163 164 164 == Changelog == 165 = 11.13.11 = 166 * Released on 08/28/2025 167 * Security update 168 165 169 = 11.13.10 = 166 170 * Released on 08/27/2025 -
powerpress/trunk/version.txt
r3351476 r3352664 1 11.13.1 01 11.13.11
Note: See TracChangeset
for help on using the changeset viewer.