Changeset 642638
- Timestamp:
- 12/20/2012 10:35:58 PM (13 years ago)
- Location:
- widget-logic
- Files:
-
- 4 added
- 4 edited
- 1 copied
-
tags/0.55 (copied) (copied from widget-logic/trunk)
-
tags/0.55/languages/widget-logic-es_ES.mo (added)
-
tags/0.55/languages/widget-logic-es_ES.po (added)
-
tags/0.55/readme.txt (modified) (2 diffs)
-
tags/0.55/widget_logic.php (modified) (2 diffs)
-
trunk/languages/widget-logic-es_ES.mo (added)
-
trunk/languages/widget-logic-es_ES.po (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/widget_logic.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
widget-logic/tags/0.55/readme.txt
r642198 r642638 5 5 Requires at least: 2.8 6 6 Tested up to: 3.5 7 Stable tag: 0.5 27 Stable tag: 0.55 8 8 License: GPLv2 or later 9 9 … … 183 183 == Changelog == 184 184 185 = 0.55 = 186 Restored a striplashes that vanished in 0.54 causing much grief. 187 188 Translation: Spanish by Eduardo Larequi http://wordpress.org/support/profile/elarequi 189 185 190 = 0.54 = 186 191 Removed a WP 3.1+ function call, hopefully making it 2.8 compatible again. -
widget-logic/tags/0.55/widget_logic.php
r641337 r642638 4 4 Plugin URI: http://wordpress.org/extend/plugins/widget-logic/ 5 5 Description: Control widgets with WP's conditional tags is_home etc 6 Version: 0.5 46 Version: 0.55 7 7 Author: Alan Trewartha 8 8 Author URI: http://freakytrigger.co.uk/author/alan/ … … 269 269 foreach($widget_list as $pos => $widget_id) 270 270 { if (empty($wl_options[$widget_id])) continue; 271 $wl_value= trim($wl_options[$widget_id]);271 $wl_value=stripslashes(trim($wl_options[$widget_id])); 272 272 if (empty($wl_value)) continue; 273 273 -
widget-logic/trunk/readme.txt
r642198 r642638 5 5 Requires at least: 2.8 6 6 Tested up to: 3.5 7 Stable tag: 0.5 27 Stable tag: 0.55 8 8 License: GPLv2 or later 9 9 … … 183 183 == Changelog == 184 184 185 = 0.55 = 186 Restored a striplashes that vanished in 0.54 causing much grief. 187 188 Translation: Spanish by Eduardo Larequi http://wordpress.org/support/profile/elarequi 189 185 190 = 0.54 = 186 191 Removed a WP 3.1+ function call, hopefully making it 2.8 compatible again. -
widget-logic/trunk/widget_logic.php
r641337 r642638 4 4 Plugin URI: http://wordpress.org/extend/plugins/widget-logic/ 5 5 Description: Control widgets with WP's conditional tags is_home etc 6 Version: 0.5 46 Version: 0.55 7 7 Author: Alan Trewartha 8 8 Author URI: http://freakytrigger.co.uk/author/alan/ … … 269 269 foreach($widget_list as $pos => $widget_id) 270 270 { if (empty($wl_options[$widget_id])) continue; 271 $wl_value= trim($wl_options[$widget_id]);271 $wl_value=stripslashes(trim($wl_options[$widget_id])); 272 272 if (empty($wl_value)) continue; 273 273
Note: See TracChangeset
for help on using the changeset viewer.