Plugin Directory

Changeset 422302


Ignore:
Timestamp:
08/11/2011 08:54:26 PM (15 years ago)
Author:
elubow
Message:

Caught another escaping bug

Location:
simplereach-slide/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simplereach-slide/trunk/readme.txt

    r422260 r422302  
    66Requires at least: 2.7
    77Tested up to: 3.2.1
    8 Stable tag: 0.5.1
     8Stable tag: 0.5.2
    99
    1010The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page.
     
    5858== Changelog ==
    5959
     60= 0.5.2 =
     61* Fixed another bug relating to tag escaping
     62
    6063= 0.5.1 =
    6164* Fixed bug relating to tag escaping
  • simplereach-slide/trunk/srslide.php

    r422260 r422302  
    44    Plugin URI: https://www.simplereach.com
    55    Description: After installation, you must click '<a href='options-general.php?page=SimpleReach-Slide'>Settings &rarr; SimpleReach Slide</a>' to turn on The Slide.
    6     Version: 0.5.1
     6    Version: 0.5.2
    77    Author: SimpleReach
    88    Author URI: https://www.simplereach.com
    99    */
    1010
    11 define('SRSLIDE_PLUGIN_VERSION', '0.5.1');
     11define('SRSLIDE_PLUGIN_VERSION', '0.5.2');
    1212define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__));
    1313define('SRSLIDE_PLUGIN_SUPPORT_EMAIL', 'support@simplereach.com');
  • simplereach-slide/trunk/srslide_functions.php

    r422260 r422302  
    124124        $myTags = array();
    125125        foreach ($wptags as $tag) {
    126             $myTags = (is_object($tag)) ? $tag->name : $tag;
     126            $myTags[] = (is_object($tag)) ? $tag->name : $tag;
    127127        }
    128128    $tags = join(',', $myTags);
  • simplereach-slide/trunk/srslide_post.php

    r422192 r422302  
    130130    // Set to post tags if the field is empty
    131131    if (empty($tags)) {
     132
    132133        foreach (wp_get_post_tags($id) as $tag) {
    133134        $tagset[] = $tag->name;
Note: See TracChangeset for help on using the changeset viewer.