2
0
Fork 0
mirror of https://github.com/discourse/wp-discourse.git synced 2025-10-03 08:59:21 +08:00

Handling comment type for post errors (#408)

* Abstract shared test methods

* Handle get_comment_type_for_post error and add comment logging

* Fix phpcs issues

* Bump version

* Add 2.2.6 changelog
This commit is contained in:
Angus McLeod 2021-06-01 06:28:01 +12:00 committed by GitHub
parent 51816b696d
commit 4a3d71401d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1104 additions and 253 deletions

View file

@ -2,7 +2,7 @@
/**
* Plugin Name: WP-Discourse
* Description: Use Discourse as a community engine for your WordPress blog
* Version: 2.2.5
* Version: 2.2.6
* Author: Discourse
* Text Domain: wp-discourse
* Domain Path: /languages
@ -34,7 +34,7 @@ define( 'WPDISCOURSE_PATH', plugin_dir_path( __FILE__ ) );
define( 'WPDISCOURSE_URL', plugins_url( '', __FILE__ ) );
define( 'MIN_WP_VERSION', '4.7' );
define( 'MIN_PHP_VERSION', '5.6.0' );
define( 'WPDISCOURSE_VERSION', '2.2.5' );
define( 'WPDISCOURSE_VERSION', '2.2.6' );

require_once WPDISCOURSE_PATH . 'lib/plugin-utilities.php';
require_once WPDISCOURSE_PATH . 'lib/template-functions.php';