Plugin Directory

Changeset 218488


Ignore:
Timestamp:
03/16/2010 09:51:18 PM (16 years ago)
Author:
timhodson
Message:

0.9.9 version release with fix for looping apply_filters() calls

Location:
blog-in-blog
Files:
4 edited
10 copied

Legend:

Unmodified
Added
Removed
  • blog-in-blog/tags/0.9.9/bib_post_template.tpl

    r210980 r218488  
    1 <!--fragment of html for post template blog-in-blog Version: 0.9.8 -->
     1<!--fragment of html for post template blog-in-blog Version: 0.9.9 -->
    22<div class="post">
    33<!-- Post Headline -->     
  • blog-in-blog/tags/0.9.9/blog-in-blog.php

    r211020 r218488  
    55Plugin URI: http://informationtakesover.co.uk/blog-in-blog-wordpress-plugin/
    66Description: Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes.
    7 Version: 0.9.8
     7Version: 0.9.9
    88Author: Tim Hodson
    99Author URI: http://timhodson.com
     
    117117        $data['post_author_avatar'] = get_avatar( $post->post_author , $blog_in_blog_opts['bib_avatar_size'] );
    118118
    119         $data['post_content'] = apply_filters('the_content', $post->post_content);
    120        
    121         $data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) );
    122        
    123         $data['post_permalink'] = apply_filters('the_permalink', get_permalink($post));
     119        #$data['post_content'] = apply_filters('the_content', $post->post_content);
     120        $data['post_content'] = $post->post_content;
     121       
     122        #$data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) );
     123        $data['post_excerpt'] = bib_process_excerpt($post) ;
     124       
     125        $data['post_permalink'] = get_permalink($post);
    124126        $data['post_comments'] = bib_process_comments($post->comment_status, $post->comment_count, $data['post_permalink']);
    125127        $data['post_tags'] = bib_get_the_tags($post->ID) ;
  • blog-in-blog/tags/0.9.9/readme.txt

    r211034 r218488  
    55Requires at least: 2.7.1
    66Tested up to: 2.9.2
    7 Stable tag: 0.9.8
     7Stable tag: 0.9.9
    88
    99Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes.
     
    6767** Default is always newest (DESC) first.
    6868* `template=<your filename>` by default we look in the following locations in the order shown:
    69 ** `WP_CONTENT_DIR/uploads/<your filename>`
    70 ** `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`
    71 ** `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`
     69*1 `WP_CONTENT_DIR/uploads/<your filename>`
     70*1 `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`
     71*1 `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`
    7272
    7373
     
    100100
    101101== Changelog ==
     102
     103= 0.9.9 =
     104Fixed issue causing infinite loop with ither plugins that call `appy_filters()` on `the_content` which will cause shortcode to be re-applied again and again.
    102105
    103106= 0.9.8 =
  • blog-in-blog/trunk

    • Property svn:ignore
      •  

        old new  
        11*.zip
         2all_tags.tpl
  • blog-in-blog/trunk/bib_post_template.tpl

    r210980 r218488  
    1 <!--fragment of html for post template blog-in-blog Version: 0.9.8 -->
     1<!--fragment of html for post template blog-in-blog Version: 0.9.9 -->
    22<div class="post">
    33<!-- Post Headline -->     
  • blog-in-blog/trunk/blog-in-blog.php

    r211020 r218488  
    55Plugin URI: http://informationtakesover.co.uk/blog-in-blog-wordpress-plugin/
    66Description: Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes.
    7 Version: 0.9.8
     7Version: 0.9.9
    88Author: Tim Hodson
    99Author URI: http://timhodson.com
     
    117117        $data['post_author_avatar'] = get_avatar( $post->post_author , $blog_in_blog_opts['bib_avatar_size'] );
    118118
    119         $data['post_content'] = apply_filters('the_content', $post->post_content);
    120        
    121         $data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) );
    122        
    123         $data['post_permalink'] = apply_filters('the_permalink', get_permalink($post));
     119        #$data['post_content'] = apply_filters('the_content', $post->post_content);
     120        $data['post_content'] = $post->post_content;
     121       
     122        #$data['post_excerpt'] = apply_filters('the_excerpt', bib_process_excerpt($post) );
     123        $data['post_excerpt'] = bib_process_excerpt($post) ;
     124       
     125        $data['post_permalink'] = get_permalink($post);
    124126        $data['post_comments'] = bib_process_comments($post->comment_status, $post->comment_count, $data['post_permalink']);
    125127        $data['post_tags'] = bib_get_the_tags($post->ID) ;
  • blog-in-blog/trunk/readme.txt

    r211034 r218488  
    55Requires at least: 2.7.1
    66Tested up to: 2.9.2
    7 Stable tag: 0.9.8
     7Stable tag: 0.9.9
    88
    99Create a blog within a blog using a category. This plugin basically shows posts in a category on a page using shortcodes.
     
    6767** Default is always newest (DESC) first.
    6868* `template=<your filename>` by default we look in the following locations in the order shown:
    69 ** `WP_CONTENT_DIR/uploads/<your filename>`
    70 ** `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`
    71 ** `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`
     69*1 `WP_CONTENT_DIR/uploads/<your filename>`
     70*1 `WP_CONTENT_DIR/plugins/blog-in-blog/<your filename>`
     71*1 `WP_CONTENT_DIR/plugins/blog-in-blog/bib_post_template.tpl`
    7272
    7373
     
    100100
    101101== Changelog ==
     102
     103= 0.9.9 =
     104Fixed issue causing infinite loop with ither plugins that call `appy_filters()` on `the_content` which will cause shortcode to be re-applied again and again.
    102105
    103106= 0.9.8 =
Note: See TracChangeset for help on using the changeset viewer.