Plugin Directory

Changeset 642638


Ignore:
Timestamp:
12/20/2012 10:35:58 PM (13 years ago)
Author:
alanft
Message:

Tagged 0.55 for release

Location:
widget-logic
Files:
4 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • widget-logic/tags/0.55/readme.txt

    r642198 r642638  
    55Requires at least: 2.8
    66Tested up to: 3.5
    7 Stable tag: 0.52
     7Stable tag: 0.55
    88License: GPLv2 or later
    99
     
    183183== Changelog ==
    184184
     185= 0.55 =
     186Restored a striplashes that vanished in 0.54 causing much grief.
     187
     188Translation: Spanish by Eduardo Larequi http://wordpress.org/support/profile/elarequi
     189
    185190= 0.54 =
    186191Removed a WP 3.1+ function call, hopefully making it 2.8 compatible again.
  • widget-logic/tags/0.55/widget_logic.php

    r641337 r642638  
    44Plugin URI:     http://wordpress.org/extend/plugins/widget-logic/
    55Description:    Control widgets with WP's conditional tags is_home etc
    6 Version:        0.54
     6Version:        0.55
    77Author:         Alan Trewartha
    88Author URI:     http://freakytrigger.co.uk/author/alan/
     
    269269        foreach($widget_list as $pos => $widget_id)
    270270        {   if (empty($wl_options[$widget_id]))  continue;
    271             $wl_value=trim($wl_options[$widget_id]);
     271            $wl_value=stripslashes(trim($wl_options[$widget_id]));
    272272            if (empty($wl_value))  continue;
    273273
  • widget-logic/trunk/readme.txt

    r642198 r642638  
    55Requires at least: 2.8
    66Tested up to: 3.5
    7 Stable tag: 0.52
     7Stable tag: 0.55
    88License: GPLv2 or later
    99
     
    183183== Changelog ==
    184184
     185= 0.55 =
     186Restored a striplashes that vanished in 0.54 causing much grief.
     187
     188Translation: Spanish by Eduardo Larequi http://wordpress.org/support/profile/elarequi
     189
    185190= 0.54 =
    186191Removed a WP 3.1+ function call, hopefully making it 2.8 compatible again.
  • widget-logic/trunk/widget_logic.php

    r641337 r642638  
    44Plugin URI:     http://wordpress.org/extend/plugins/widget-logic/
    55Description:    Control widgets with WP's conditional tags is_home etc
    6 Version:        0.54
     6Version:        0.55
    77Author:         Alan Trewartha
    88Author URI:     http://freakytrigger.co.uk/author/alan/
     
    269269        foreach($widget_list as $pos => $widget_id)
    270270        {   if (empty($wl_options[$widget_id]))  continue;
    271             $wl_value=trim($wl_options[$widget_id]);
     271            $wl_value=stripslashes(trim($wl_options[$widget_id]));
    272272            if (empty($wl_value))  continue;
    273273
Note: See TracChangeset for help on using the changeset viewer.