Changeset 2078742
- Timestamp:
- 05/01/2019 06:48:01 PM (7 years ago)
- Location:
- widget-display-conditions/trunk
- Files:
-
- 3 edited
-
includes/fields.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
widget-display-conditions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
widget-display-conditions/trunk/includes/fields.php
r2078733 r2078742 292 292 293 293 $return .= sprintf( '<option value="%s"%s>%s</option>', 294 esc_attr( $item['id'] ), selected( $item['selected'], false, true ), $text );294 esc_attr( $item['id'] ), selected( $item['selected'], true, false ), $text ); 295 295 } 296 296 } -
widget-display-conditions/trunk/readme.txt
r2078733 r2078742 4 4 Requires at least: 4.0.0 5 5 Tested up to: 5.1 6 Stable tag: 0.2. 16 Stable tag: 0.2.2 7 7 Requires PHP: 5.6.27 8 8 License: GPLv2 or later … … 50 50 51 51 == Changelog == 52 53 = 0.2.2 = 54 Release date: May 1st, 2019 55 56 * Fix - UI: field selected value was not set correctly. 52 57 53 58 = 0.2.1 = -
widget-display-conditions/trunk/widget-display-conditions.php
r2078733 r2078742 4 4 Plugin URI: https://wordpress.org/plugins/widget-display-conditions/ 5 5 Description: Control on which page you want a particular widget to be displayed. 6 Version: 0.2. 16 Version: 0.2.2 7 7 Author: Maarten Menten 8 8 Author URI: https://profiles.wordpress.org/maartenm/ … … 15 15 defined( 'WDC_PLUGIN_FILE' ) or define( 'WDC_PLUGIN_FILE', __FILE__ ); 16 16 defined( 'WDC_ABSPATH' ) or define( 'WDC_ABSPATH', dirname( WDC_PLUGIN_FILE ) . '/' ); 17 defined( 'WDC_VERSION' ) or define( 'WDC_VERSION', '0.2. 1' );17 defined( 'WDC_VERSION' ) or define( 'WDC_VERSION', '0.2.2' ); 18 18 defined( 'WDC_NONCE_NAME' ) or define( 'WDC_NONCE_NAME', 'wdc_nonce' ); 19 19 defined( 'WDC_MAX_FIELD_ITEMS' ) or define( 'WDC_MAX_FIELD_ITEMS', 9999 );
Note: See TracChangeset
for help on using the changeset viewer.