Version Description
Download this release
Release Info
Developer | amandato |
Plugin | PowerPress Podcasting plugin by Blubrry |
Version | 0.6.5 |
Comparing to | |
See all releases |
Code changes from version 0.6.4 to 0.6.5
- powerpress.php +6 -3
- readme.txt +3 -1
powerpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Blubrry Powerpress
|
4 |
Plugin URI: http://www.blubrry.com/powerpress/
|
5 |
Description: <a href="http://www.blubrry.com/powerpress/" target="_blank">Blubrry Powerpress</a> adds podcasting support to your blog. Features include: media player, 3rd party statistics and iTunes integration.
|
6 |
-
Version: 0.6.
|
7 |
Author: Blubrry
|
8 |
Author URI: http://www.blubrry.com/
|
9 |
Change Log:
|
@@ -28,7 +28,7 @@ License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
|
|
28 |
This project uses source that is GPL licensed.
|
29 |
*/
|
30 |
|
31 |
-
define('POWERPRESS_VERSION', '0.6.
|
32 |
|
33 |
/////////////////////////////////////////////////////
|
34 |
// The following define options should be placed in your
|
@@ -906,7 +906,10 @@ function powerpress_format_itunes_value($value, $char_limit = 255, $specialchars
|
|
906 |
$value = preg_replace("/\[(kml_(flash|swf)embed)\b(.*?)(?:(\/))?(\]|$)/s", '', $value);
|
907 |
if( DB_CHARSET != 'utf8' ) // Check if the string is UTF-8
|
908 |
$value = utf8_encode($value); // If it is not, convert to UTF-8 then decode it...
|
909 |
-
|
|
|
|
|
|
|
910 |
|
911 |
if( strlen($value) > $char_limit )
|
912 |
return wp_specialchars(substr($value, 0, $char_limit));
|
3 |
Plugin Name: Blubrry Powerpress
|
4 |
Plugin URI: http://www.blubrry.com/powerpress/
|
5 |
Description: <a href="http://www.blubrry.com/powerpress/" target="_blank">Blubrry Powerpress</a> adds podcasting support to your blog. Features include: media player, 3rd party statistics and iTunes integration.
|
6 |
+
Version: 0.6.5
|
7 |
Author: Blubrry
|
8 |
Author URI: http://www.blubrry.com/
|
9 |
Change Log:
|
28 |
This project uses source that is GPL licensed.
|
29 |
*/
|
30 |
|
31 |
+
define('POWERPRESS_VERSION', '0.6.5' );
|
32 |
|
33 |
/////////////////////////////////////////////////////
|
34 |
// The following define options should be placed in your
|
906 |
$value = preg_replace("/\[(kml_(flash|swf)embed)\b(.*?)(?:(\/))?(\]|$)/s", '', $value);
|
907 |
if( DB_CHARSET != 'utf8' ) // Check if the string is UTF-8
|
908 |
$value = utf8_encode($value); // If it is not, convert to UTF-8 then decode it...
|
909 |
+
if(version_compare("5", phpversion(), ">"))
|
910 |
+
$value = str_replace(' ', ' ', $value); // Best we can do for PHP4
|
911 |
+
else
|
912 |
+
$value = @html_entity_decode($value, ENT_COMPAT, 'UTF-8'); // Remove any additional entities such as
|
913 |
|
914 |
if( strlen($value) > $char_limit )
|
915 |
return wp_specialchars(substr($value, 0, $char_limit));
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Angelo Mandato, Blubrry.com
|
|
3 |
Tags: podcast, podcasting, itunes, enclosure, zune, iphone, audio, video, rss2, feed, player, media, rss
|
4 |
Requires at least: 2.5.0
|
5 |
Tested up to: 2.7.1
|
6 |
-
Stable tag: 0.6.
|
7 |
|
8 |
Add podcasting support to your blog.
|
9 |
|
@@ -103,6 +103,8 @@ Added new options to load all javascript for players in the wp_footer() function
|
|
103 |
0.6.4 released on 02/16/2009
|
104 |
Fixed bug where post_password_required() function does not exist, bug only affects users using Wordpress blogs older than version 2.7.
|
105 |
|
|
|
|
|
106 |
|
107 |
== Contributors ==
|
108 |
Angelo Mandato, CIO [RawVoice](http://www.rawvoice.com) - Plugin founder, architect and lead developer
|
3 |
Tags: podcast, podcasting, itunes, enclosure, zune, iphone, audio, video, rss2, feed, player, media, rss
|
4 |
Requires at least: 2.5.0
|
5 |
Tested up to: 2.7.1
|
6 |
+
Stable tag: 0.6.5
|
7 |
|
8 |
Add podcasting support to your blog.
|
9 |
|
103 |
0.6.4 released on 02/16/2009
|
104 |
Fixed bug where post_password_required() function does not exist, bug only affects users using Wordpress blogs older than version 2.7.
|
105 |
|
106 |
+
0.6.5 released on 02/20/2009
|
107 |
+
Fixed warning from being printed when v0.6.3/v0.6.4 used with PHP4. Bug only affected users using PHP4.
|
108 |
|
109 |
== Contributors ==
|
110 |
Angelo Mandato, CIO [RawVoice](http://www.rawvoice.com) - Plugin founder, architect and lead developer
|