Plugin Directory

Changeset 588166


Ignore:
Timestamp:
08/21/2012 04:27:07 AM (14 years ago)
Author:
Captin Shmit
Message:

Fixed bug where post content would be inaccurate for some episodes within widget

Location:
message-flow/tags/1.1.3
Files:
1 added
9 copied

Legend:

Unmodified
Added
Removed
  • message-flow/tags/1.1.3/main.php

    r588159 r588166  
    44Plugin URI: http://JoeAnzalone.com/plugins/message-flow
    55Description: Provides a shortcode that generates a cover flow-like interface for all podcasts in a given category or feed: [message-flow category="11"]
    6 Version: 1.1.2
     6Version: 1.1.3
    77Author: Joe Anzalone
    88Author URI: http://JoeAnzalone.com
     
    115115                if(!empty($post->post_content)){
    116116                    $podcast_episode_text_content = $post->post_content;
     117                } else {
     118                    $podcast_episode_text_content = NULL;
    117119                }
    118120               
     
    156158                </div>';
    157159               
    158                 if(!empty($podcast_episode_text_content)){
    159                     $podcast_episodes_text_contents[$post->ID] = $podcast_episode_text_content;
    160                 }               
     160
     161                $podcast_episodes_text_contents[$post->ID] = $podcast_episode_text_content;
     162
    161163            }
    162164        }
  • message-flow/tags/1.1.3/readme.txt

    r588159 r588166  
    4444== Changelog ==
    4545
     46= 1.1.3 =
     47* Fixed bug where post content would be inaccurate for some episodes within widget
     48
    4649= 1.1.2 =
    4750* Fixed WP_DEBUG errors that appear when site has no podcast episodes
Note: See TracChangeset for help on using the changeset viewer.