Changeset 1515607
- Timestamp:
- 10/15/2016 08:47:54 PM (9 years ago)
- Location:
- content-warning-v2/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
content-warning-v2.php (modified) (2 diffs)
-
includes/settings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-warning-v2/trunk/README.md
r1506148 r1515607 7 7 [](https://github.com/JayWood/content-warning-v3/issues) 8 8 9 **Current Version:** 3.7 9 **Current Version:** 3.7.1 10 10 **Tested Up To:** 4.6.1 11 11 **Author:** [Jay Wood](http://github.com/JayWood) … … 76 76 ## Changelog 77 77 78 ### 3.7.1 79 * Fixed category saving in options Fixes [#59](https://github.com/JayWood/content-warning-v3/issues/59) 80 78 81 ### 3.7 79 82 * Fixed an opacity bug where if user set opacity to 0, it was ignored. This should no longer happen. -
content-warning-v2/trunk/content-warning-v2.php
r1506148 r1515607 5 5 Description: A WordPress Plugin to allow site owners to display an acceptance dialog. Used mainly for NSFW websites, this plugin provides a dialog popup to warn viewers of it's possible content. 6 6 Author: Jerry Wood Jr. 7 Version: 3.7 7 Version: 3.7.1 8 8 Author URI: http://plugish.com 9 9 Text Domain: content-warning-v2 … … 46 46 public static $instance = null; 47 47 48 const VERSION = '3.7 ';48 const VERSION = '3.7.1'; 49 49 50 50 /** -
content-warning-v2/trunk/includes/settings.php
r1506148 r1515607 334 334 335 335 $option_value = get_option( $field_id, $field_id, $default ); 336 337 336 ?> 338 <select name="<?php echo $field_id; ?> " id="<?php echo $field_id; ?>" class="cwv2_select2 widefat" multiple="multiple">337 <select name="<?php echo $field_id; ?>[]" id="<?php echo $field_id; ?>" class="cwv2_select2 widefat" multiple="multiple"> 339 338 <?php foreach ( $options as $k => $v ) : ?> 340 339 <option value="<?php echo $k; ?>" <?php $this->selected_array( $option_value, $k ); ?>><?php echo $v; ?></option> -
content-warning-v2/trunk/readme.txt
r1506148 r1515607 5 5 Requires at least: 3.5 6 6 Tested up to: 4.6.1 7 Stable tag: 3.7 7 Stable tag: 3.7.1 8 8 9 9 A plugin that provides a warning box with a ton more options completely re-written from the ground up. … … 106 106 == Changelog == 107 107 108 = 3.7.1 = 109 * Fixed category saving in options Fixes [#59](https://github.com/JayWood/content-warning-v3/issues/59) 110 108 111 = 3.7 = 109 112 * Fixed an opacity bug where if user set opacity to 0, it was ignored. This should no longer happen.
Note: See TracChangeset
for help on using the changeset viewer.