Plugin Directory

Changeset 472712


Ignore:
Timestamp:
12/09/2011 04:11:28 AM (14 years ago)
Author:
pjgalbraith
Message:

fixed 1.0.9 tagged release

Location:
recent-posts-plus/tags/1.0.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • recent-posts-plus/tags/1.0.9/readme.txt

    r472711 r472712  
    3737
    3838== Changelog ==
    39 
    40 = 1.0.10 =
    41 * Fixed excerpt ellipsis being added to the title incorrectly
    4239
    4340= 1.0.9 =
     
    8885== Upgrade Notice ==
    8986
    90 = 1.0.10 =
    91 Fixed excerpt ellipsis being added to the title incorrectly
    92 
    9387= 1.0.9 =
    9488Added option to customize the ellipsis within the Widget Output Template
  • recent-posts-plus/tags/1.0.9/recent-posts-plus.php

    r472711 r472712  
    44Plugin URI: http://www.pjgalbraith.com/2011/08/recent-posts-plus/
    55Description: Provides a replacement for the recent posts widget with advanced settings
    6 Version: 1.0.10
     6Version: 1.0.9
    77Author: Patrick Galbraith
    88Author URI: http://www.pjgalbraith.com
     
    170170               
    171171                //Deal with {ELLIPSIS}{/ELLIPSIS} tags, we parse it with the template tags, so you can use these tags in the excerpt
    172                 $truncate_elipsis_excerpt = $truncate_elipsis;
    173172                if(!empty($truncate_elipsis_template)) {
    174                     $truncate_elipsis_excerpt = str_replace(array_keys($widget_ouput_template_params), array_values($widget_ouput_template_params), $truncate_elipsis_template);
     173                    $truncate_elipsis = str_replace(array_keys($widget_ouput_template_params), array_values($widget_ouput_template_params), $truncate_elipsis_template);
    175174                    $widget_output_template = preg_replace('/\{ELLIPSIS\}(.*?)\{\/ELLIPSIS\}/', '', $widget_output_template); //remove {ELLIPSIS}{/ELLIPSIS} tags from widget_output_template
    176175                }
     
    184183                        $POST_EXCERPT = $POST_EXCERPT_RAW;
    185184                    else
    186                         $POST_EXCERPT = $this->_custom_trim_excerpt($truncate_post_excerpt, $truncate_elipsis_excerpt, $truncate_post_excerpt_type);
     185                        $POST_EXCERPT = $this->_custom_trim_excerpt($truncate_post_excerpt, $truncate_elipsis, $truncate_post_excerpt_type);
    187186                }
    188187               
Note: See TracChangeset for help on using the changeset viewer.