Plugin Directory

Changeset 1842345


Ignore:
Timestamp:
03/18/2018 09:56:14 PM (8 years ago)
Author:
ajvillegas
Message:

Version 1.2.3 release

Location:
easy-widget-columns
Files:
47 added
4 edited

Legend:

Unmodified
Added
Removed
  • easy-widget-columns/trunk/README.txt

    r1819888 r1842345  
    55Requires at least: 4.5
    66Tested up to: 4.9
    7 Stable tag: 1.2.2
     7Stable tag: 1.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    238238== Changelog ==
    239239
     240= 1.2.3 =
     241* Fix PHP 7.2 compatibility issue.
     242
    240243= 1.2.2 =
    241244* Removed the `required` attribute from the image URL input field in the 'Widget Row' widget (originally used for styling purposes) to prevent issues when saving.
  • easy-widget-columns/trunk/easy-widget-columns.php

    r1819888 r1842345  
    1717 * Plugin URI:        http://www.alexisvillegas.com/plugins/easy-widget-columns
    1818 * Description:       Easily display widgets in rows of columns.
    19  * Version:           1.2.2
     19 * Version:           1.2.3
    2020 * Author:            Alexis J. Villegas
    2121 * Author URI:        http://www.alexisvillegas.com
  • easy-widget-columns/trunk/includes/class-easy-widget-columns.php

    r1819888 r1842345  
    7070
    7171        $this->plugin_name = 'easy-widget-columns';
    72         $this->version = '1.2.2';
     72        $this->version = '1.2.3';
    7373        $this->load_dependencies();
    7474        $this->set_locale();
  • easy-widget-columns/trunk/widgets/class-widget-row-divider.php

    r1819888 r1842345  
    533533                        </ul> <?php
    534534                           
    535                         if ( 0 != count( $instance['preset_classes'] ) ) {
     535                        if ( $instance['preset_classes'] && 0 != count( $instance['preset_classes'] ) ) {
    536536                           
    537537                            if ( 1 == count( $instance['preset_classes'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.