Changeset 3189566
- Timestamp:
- 11/15/2024 12:57:44 PM (16 months ago)
- Location:
- podlove-podcasting-plugin-for-wordpress
- Files:
-
- 8 edited
- 1 copied
-
tags/4.1.21 (copied) (copied from podlove-podcasting-plugin-for-wordpress/trunk)
-
tags/4.1.21/lib/model/media_file.php (modified) (3 diffs)
-
tags/4.1.21/podlove.php (modified) (1 diff)
-
tags/4.1.21/readme.txt (modified) (2 diffs)
-
tags/4.1.21/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/lib/model/media_file.php (modified) (3 diffs)
-
trunk/podlove.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
podlove-podcasting-plugin-for-wordpress/tags/4.1.21/lib/model/media_file.php
r3094180 r3189566 206 206 } 207 207 208 $path .= '/'. $this->get_download_file_name();208 $path .= '/'.urlencode($this->get_download_file_name()); 209 209 210 210 return $path; … … 224 224 // add params to path 225 225 foreach ($params as $param_name => $value) { 226 $path .= $connector($path).'ptm_'.$param_name.'='. $value;226 $path .= $connector($path).'ptm_'.$param_name.'='.urlencode($value); 227 227 } 228 228 229 229 // at last, add file param, so wget users get the right extension 230 $path .= $connector($path).'ptm_file='. $this->get_download_file_name();230 $path .= $connector($path).'ptm_file='.urlencode($this->get_download_file_name()); 231 231 232 232 return $path; … … 417 417 418 418 // verify HTTP header 419 if (!preg_match('/^[23]\ \d\\d$/', $header['http_code'])) {419 if (!preg_match('/^[23]\d\d$/', $header['http_code'])) { 420 420 Log::get()->addError( 421 421 'Unexpected http response when trying to access remote media file.', -
podlove-podcasting-plugin-for-wordpress/tags/4.1.21/podlove.php
r3188654 r3189566 3 3 * Plugin Name: Podlove Podcast Publisher 4 4 * Plugin URI: https://podlove.org/podlove-podcast-publisher/ 5 * Version: 4.1.2 05 * Version: 4.1.21 6 6 * Requires at least: 4.9.6 7 7 * Requires PHP: 8.0 -
podlove-podcasting-plugin-for-wordpress/tags/4.1.21/readme.txt
r3188654 r3189566 4 4 Tags: podlove, podcast, publishing, rss, audio 5 5 Tested up to: 6.7 6 Stable tag: 4.1.2 06 Stable tag: 4.1.21 7 7 Requires at least: 4.9.6 8 8 Requires PHP: 8.0 … … 115 115 116 116 == Changelog == 117 118 = 4.1.21 = 119 120 * fix: encode tracking urls and their redirected urls 117 121 118 122 = 4.1.20 = -
podlove-podcasting-plugin-for-wordpress/tags/4.1.21/vendor/composer/installed.php
r3188654 r3189566 2 2 'root' => array( 3 3 'name' => 'podlove/podcast-publisher', 4 'pretty_version' => '4.1.2 0',5 'version' => '4.1.2 0.0',6 'reference' => ' ddf453598e504de95b6da2e42f06a65ddc6864d1',4 'pretty_version' => '4.1.21', 5 'version' => '4.1.21.0', 6 'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 135 135 ), 136 136 'podlove/podcast-publisher' => array( 137 'pretty_version' => '4.1.2 0',138 'version' => '4.1.2 0.0',139 'reference' => ' ddf453598e504de95b6da2e42f06a65ddc6864d1',137 'pretty_version' => '4.1.21', 138 'version' => '4.1.21.0', 139 'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977', 140 140 'type' => 'library', 141 141 'install_path' => __DIR__ . '/../../', -
podlove-podcasting-plugin-for-wordpress/trunk/lib/model/media_file.php
r3094180 r3189566 206 206 } 207 207 208 $path .= '/'. $this->get_download_file_name();208 $path .= '/'.urlencode($this->get_download_file_name()); 209 209 210 210 return $path; … … 224 224 // add params to path 225 225 foreach ($params as $param_name => $value) { 226 $path .= $connector($path).'ptm_'.$param_name.'='. $value;226 $path .= $connector($path).'ptm_'.$param_name.'='.urlencode($value); 227 227 } 228 228 229 229 // at last, add file param, so wget users get the right extension 230 $path .= $connector($path).'ptm_file='. $this->get_download_file_name();230 $path .= $connector($path).'ptm_file='.urlencode($this->get_download_file_name()); 231 231 232 232 return $path; … … 417 417 418 418 // verify HTTP header 419 if (!preg_match('/^[23]\ \d\\d$/', $header['http_code'])) {419 if (!preg_match('/^[23]\d\d$/', $header['http_code'])) { 420 420 Log::get()->addError( 421 421 'Unexpected http response when trying to access remote media file.', -
podlove-podcasting-plugin-for-wordpress/trunk/podlove.php
r3188654 r3189566 3 3 * Plugin Name: Podlove Podcast Publisher 4 4 * Plugin URI: https://podlove.org/podlove-podcast-publisher/ 5 * Version: 4.1.2 05 * Version: 4.1.21 6 6 * Requires at least: 4.9.6 7 7 * Requires PHP: 8.0 -
podlove-podcasting-plugin-for-wordpress/trunk/readme.txt
r3188654 r3189566 4 4 Tags: podlove, podcast, publishing, rss, audio 5 5 Tested up to: 6.7 6 Stable tag: 4.1.2 06 Stable tag: 4.1.21 7 7 Requires at least: 4.9.6 8 8 Requires PHP: 8.0 … … 115 115 116 116 == Changelog == 117 118 = 4.1.21 = 119 120 * fix: encode tracking urls and their redirected urls 117 121 118 122 = 4.1.20 = -
podlove-podcasting-plugin-for-wordpress/trunk/vendor/composer/installed.php
r3188654 r3189566 2 2 'root' => array( 3 3 'name' => 'podlove/podcast-publisher', 4 'pretty_version' => '4.1.2 0',5 'version' => '4.1.2 0.0',6 'reference' => ' ddf453598e504de95b6da2e42f06a65ddc6864d1',4 'pretty_version' => '4.1.21', 5 'version' => '4.1.21.0', 6 'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 135 135 ), 136 136 'podlove/podcast-publisher' => array( 137 'pretty_version' => '4.1.2 0',138 'version' => '4.1.2 0.0',139 'reference' => ' ddf453598e504de95b6da2e42f06a65ddc6864d1',137 'pretty_version' => '4.1.21', 138 'version' => '4.1.21.0', 139 'reference' => 'c704fd3d2f5b9cc8967137efa5c841acfa544977', 140 140 'type' => 'library', 141 141 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.