Plugin Directory

Changeset 1515607


Ignore:
Timestamp:
10/15/2016 08:47:54 PM (9 years ago)
Author:
Phyrax
Message:

Fix category handling in admin

Location:
content-warning-v2/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • content-warning-v2/trunk/README.md

    r1506148 r1515607  
    77[![Issues](https://img.shields.io/github/issues/JayWood/content-warning-v3.svg)](https://github.com/JayWood/content-warning-v3/issues)
    88
    9 **Current Version:** 3.7   
     9**Current Version:** 3.7.1   
    1010**Tested Up To:** 4.6.1 
    1111**Author:** [Jay Wood](http://github.com/JayWood)   
     
    7676## Changelog
    7777
     78### 3.7.1
     79* Fixed category saving in options Fixes [#59](https://github.com/JayWood/content-warning-v3/issues/59)
     80
    7881### 3.7
    7982* 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  
    55Description:    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.
    66Author:         Jerry Wood Jr.
    7 Version:        3.7
     7Version:        3.7.1
    88Author URI:     http://plugish.com
    99Text Domain:    content-warning-v2
     
    4646    public static $instance = null;
    4747
    48     const VERSION = '3.7';
     48    const VERSION = '3.7.1';
    4949
    5050    /**
  • content-warning-v2/trunk/includes/settings.php

    r1506148 r1515607  
    334334
    335335        $option_value = get_option( $field_id, $field_id, $default );
    336 
    337336        ?>
    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">
    339338            <?php foreach ( $options as $k => $v ) : ?>
    340339                <option value="<?php echo $k; ?>" <?php $this->selected_array( $option_value, $k ); ?>><?php echo $v; ?></option>
  • content-warning-v2/trunk/readme.txt

    r1506148 r1515607  
    55Requires at least: 3.5
    66Tested up to: 4.6.1
    7 Stable tag: 3.7
     7Stable tag: 3.7.1
    88
    99A plugin that provides a warning box with a ton more options completely re-written from the ground up.
     
    106106== Changelog ==
    107107
     108= 3.7.1 =
     109* Fixed category saving in options Fixes [#59](https://github.com/JayWood/content-warning-v3/issues/59)
     110
    108111= 3.7 =
    109112* 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.