Plugin Directory

Changeset 1740164


Ignore:
Timestamp:
10/03/2017 08:50:51 AM (8 years ago)
Author:
pauldewouters
Message:

Preparing for 1.4.3.2 release

Location:
comment-popularity/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • comment-popularity/trunk/README.txt

    r1738252 r1740164  
    55Requires at least: 3.9
    66Tested up to: 4.8.1
    7 Stable tag: 1.4.3.1
     7Stable tag: 1.4.3.2
     8Requires PHP: 5.3.2
    89License: GPLv2 or later
    910License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    130131
    131132== Changelog ==
     133
     134= 1.4.3.2 =
     135
     136* Fix a PHP compatibility issue that caused a fatal error on versions that don't support short array syntax.
    132137
    133138= 1.4.3.1 =
  • comment-popularity/trunk/comment-popularity.php

    r1738252 r1740164  
    44Plugin URI: https://github.com/humanmade/comment-popularity
    55Description: Allow visitors to vote on comments.
    6 Version: 1.4.3.1
     6Version: 1.4.3.2
    77Author: Human Made Limited
    88Author URI: http://humanmade.co.uk
  • comment-popularity/trunk/inc/class-comment-popularity.php

    r1738252 r1740164  
    1010     * Plugin version number.
    1111     */
    12     const HMN_CP_PLUGIN_VERSION = '1.4.3.1';
     12    const HMN_CP_PLUGIN_VERSION = '1.4.3.2';
    1313
    1414    /**
     
    652652        if ( is_wp_error( $user_can_vote ) ) {
    653653
    654             return [
     654            return array(
    655655                'error_code' => $error->get_error_code(),
    656656                'error_msg'  => $error->get_error_message( $error_code ),
    657             ];
     657            );
    658658        }
    659659
Note: See TracChangeset for help on using the changeset viewer.