Skip to content

Commit 918648e

Browse files
committed
Fixed default value of webmention_avatars
1 parent 7dbb68d commit 918648e

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

includes/class-webmention-receiver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static function init() {
3939
add_filter( 'webmention_comment_data', array( 'Webmention_Receiver', 'default_content_filter' ), 22, 1 );
4040

4141
// Allow for avatars on webmention comment types
42-
if ( 0 !== (int) get_option( 'webmention_avatars' ) ) {
42+
if ( 0 !== (int) get_option( 'webmention_avatars', 1 ) ) {
4343
add_filter( 'get_avatar_comment_types', array( 'Webmention_Receiver', 'get_avatar_comment_types' ), 99 );
4444
}
4545

languages/webmention.pot

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the MIT.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Webmention 3.8.5\n"
5+
"Project-Id-Version: Webmention 3.8.6\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/webmention\n"
7-
"POT-Creation-Date: 2018-10-15 18:02:28+00:00\n"
7+
"POT-Creation-Date: 2018-11-07 16:46:49+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"

readme.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
**Tags:** webmention, pingback, trackback, linkback, indieweb, comment, response
77
**Requires at least:** 4.7
88
**Tested up to:** 4.9.9
9-
**Stable tag:** 3.8.5
9+
**Stable tag:** 3.8.6
1010
**Requires PHP:** 5.2
1111
**License:** MIT
1212
**License URI:** http://opensource.org/licenses/MIT
@@ -80,6 +80,10 @@ As Webmention uses the REST API endpoint system, most up to date caching plugins
8080

8181
Project and support maintained on github at [pfefferle/wordpress-webmention](https://github.com/pfefferle/wordpress-webmention).
8282

83+
### 3.8.6 ###
84+
85+
* Fixed default value of `webmention_avatars`
86+
8387
### 3.8.5 ###
8488

8589
* Set correct default value for the "Show comment form" setting

readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
44
Tags: webmention, pingback, trackback, linkback, indieweb, comment, response
55
Requires at least: 4.7
66
Tested up to: 4.9.9
7-
Stable tag: 3.8.5
7+
Stable tag: 3.8.6
88
Requires PHP: 5.2
99
License: MIT
1010
License URI: http://opensource.org/licenses/MIT
@@ -78,6 +78,10 @@ As Webmention uses the REST API endpoint system, most up to date caching plugins
7878

7979
Project and support maintained on github at [pfefferle/wordpress-webmention](https://github.com/pfefferle/wordpress-webmention).
8080

81+
= 3.8.6 =
82+
83+
* Fixed default value of `webmention_avatars`
84+
8185
= 3.8.5 =
8286

8387
* Set correct default value for the "Show comment form" setting

webmention.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Webmention support for WordPress posts
66
* Author: Matthias Pfefferle
77
* Author URI: https://notiz.blog/
8-
* Version: 3.8.5
8+
* Version: 3.8.6
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: webmention

0 commit comments

Comments
 (0)