Changeset 1740164
- Timestamp:
- 10/03/2017 08:50:51 AM (8 years ago)
- Location:
- comment-popularity/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
comment-popularity.php (modified) (1 diff)
-
inc/class-comment-popularity.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
comment-popularity/trunk/README.txt
r1738252 r1740164 5 5 Requires at least: 3.9 6 6 Tested up to: 4.8.1 7 Stable tag: 1.4.3.1 7 Stable tag: 1.4.3.2 8 Requires PHP: 5.3.2 8 9 License: GPLv2 or later 9 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 130 131 131 132 == 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. 132 137 133 138 = 1.4.3.1 = -
comment-popularity/trunk/comment-popularity.php
r1738252 r1740164 4 4 Plugin URI: https://github.com/humanmade/comment-popularity 5 5 Description: Allow visitors to vote on comments. 6 Version: 1.4.3. 16 Version: 1.4.3.2 7 7 Author: Human Made Limited 8 8 Author URI: http://humanmade.co.uk -
comment-popularity/trunk/inc/class-comment-popularity.php
r1738252 r1740164 10 10 * Plugin version number. 11 11 */ 12 const HMN_CP_PLUGIN_VERSION = '1.4.3. 1';12 const HMN_CP_PLUGIN_VERSION = '1.4.3.2'; 13 13 14 14 /** … … 652 652 if ( is_wp_error( $user_can_vote ) ) { 653 653 654 return [654 return array( 655 655 'error_code' => $error->get_error_code(), 656 656 'error_msg' => $error->get_error_message( $error_code ), 657 ];657 ); 658 658 } 659 659
Note: See TracChangeset
for help on using the changeset viewer.