Plugin Directory

Changeset 1740346

Timestamp:
10/03/2017 01:46:30 PM (7 years ago)
Author:
pauldewouters
Message:

Preparing for 1.4.3.3 release

Location:
comment-popularity/trunk
Files:
3 edited

Legend:

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

    r1740164 r1740346  
    55Requires at least: 3.9
    66Tested up to: 4.8.1
    7 Stable tag: 1.4.3.2
     7Stable tag: 1.4.3.
    88Requires PHP: 5.3.2
    99License: GPLv2 or later
     
    131131
    132132== Changelog ==
     133
     134
     135
     136
    133137
    134138= 1.4.3.2 =
  • comment-popularity/trunk/comment-popularity.php

    r1740164 r1740346  
    44Plugin URI: https://github.com/humanmade/comment-popularity
    55Description: Allow visitors to vote on comments.
    6 Version: 1.4.3.2
     6Version: 1.4.3.
    77Author: Human Made Limited
    88Author URI: http://humanmade.co.uk
     
    1616
    1717// Check PHP version. We need at least 5.3.2.
    18 if ( version_compare( phpversion(), '5.3.2', '<' ) ) {
     18if ( version_compare( , '5.3.2', '<' ) ) {
    1919    deactivate_plugins( plugin_basename( __FILE__ ) );
    2020    wp_die( sprintf( __( 'This plugin requires PHP Version %s. Sorry about that.', 'comment-popularity' ), '5.3.2' ), 'Comment Popularity', array( 'back_link' => true ) );
  • comment-popularity/trunk/inc/class-comment-popularity.php

    r1740164 r1740346  
    1010     * Plugin version number.
    1111     */
    12     const HMN_CP_PLUGIN_VERSION = '1.4.3.2';
     12    const HMN_CP_PLUGIN_VERSION = '1.4.3.';
    1313
    1414    /**
     
    664664            $error_msg  = __( 'Unable to downvote a comment with no karma', 'comment-popularity' );
    665665
    666             return [
     666            return
    667667                'error_code' => $error_code,
    668668                'error_msg'  => $error_msg,
    669             ];
     669            ;
    670670        }
    671671
Note: See TracChangeset for help on using the changeset viewer.