Plugin Directory

Changeset 3402635


Ignore:
Timestamp:
11/25/2025 03:03:10 PM (3 months ago)
Author:
benbeecroft
Message:

PowerPress 11.15.3

Location:
powerpress/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • powerpress/trunk/powerpress.php

    r3400595 r3402635  
    44Plugin URI: https://blubrry.com/services/powerpress-plugin/
    55Description: <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.15.2
     6Version: 11.15.3
    77Author: Blubrry
    88Author URI: https://blubrry.com/
     
    135135
    136136// WP_PLUGIN_DIR (REMEMBER TO USE THIS DEFINE IF NEEDED)
    137 define('POWERPRESS_VERSION', '11.15.2' );
     137define('POWERPRESS_VERSION', '11.15.3' );
    138138
    139139// Translation support:
  • powerpress/trunk/powerpressadmin.php

    r3400595 r3402635  
    29952995                                $error = __('Error: invalid chapter image filetype ' . $ext . ' ' . $fileName . ' ' . print_r($existingIms, true), 'powerpress');
    29962996                                powerpress_add_error($error);
     2997                                continue; // skip chapter when unacceptable type
    29972998                            }
    29982999                            $fileURL = $chapterIms[$i] ?? '';
     
    51625163
    51635164    // build the request url with parameters
    5164     $req_url = vsprintf($endpoint_path, $url_params);
     5165    if (strpos($endpoint_path, '?') !== false) {
     5166        // handle query string separate to avoid '%' being handled as format specifier in vsprintf
     5167        list($path_template, $query_string) = explode('?', $endpoint_path, 2);
     5168        $req_url = vsprintf($path_template, $url_params) . '?' . $query_string;
     5169    } else {
     5170        $req_url = vsprintf($endpoint_path, $url_params);
     5171    }
     5172
    51655173    $req_url .= (strpos($req_url, '?') !== false ? '&' : '?') . 'format=json&cache=' . md5(rand(0, 999) . time());
    51665174    $req_url .= (defined('POWERPRESS_BLUBRRY_API_QSA') ? '&' . POWERPRESS_BLUBRRY_API_QSA : '');
  • powerpress/trunk/readme.txt

    r3400595 r3402635  
    55Requires PHP: 5.2
    66Tested up to: 6.8
    7 Stable tag: 11.15.2
     7Stable tag: 11.15.3
    88Donate link: https://blubrry.com/services/podcast-hosting/
    99License: GPLv2 or later
     
    165165
    166166== Changelog ==
     167= 11.15.3 =
     168* Released on 11/24/25
     169* Bugfix: Fixed vsprintf call in api handler to only modify the expected string, fixes transcript generation error
     170
    167171= 11.15.2 =
    168172* Released on 11/20/2025
  • powerpress/trunk/version.txt

    r3400595 r3402635  
    1 11.15.2
     111.15.3
Note: See TracChangeset for help on using the changeset viewer.