Skip to content

Commit fbac1a2

Browse files
committed
Fixed default value of webmention_avatars on the settings page
1 parent 918648e commit fbac1a2

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

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.6\n"
5+
"Project-Id-Version: Webmention 3.8.7\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/webmention\n"
7-
"POT-Creation-Date: 2018-11-07 16:46:49+00:00\n"
7+
"POT-Creation-Date: 2018-11-07 16:56:55+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.6
9+
**Stable tag:** 3.8.7
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.7 ###
84+
85+
* Fixed default value of `webmention_avatars` on the settings page
86+
8387
### 3.8.6 ###
8488

8589
* Fixed default value of `webmention_avatars`

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.6
7+
Stable tag: 3.8.7
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.7 =
82+
83+
* Fixed default value of `webmention_avatars` on the settings page
84+
8185
= 3.8.6 =
8286

8387
* Fixed default value of `webmention_avatars`

templates/webmention-settings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
<fieldset>
128128
<label for="webmention_avatars">
129129
<input type="checkbox" name="webmention_avatars" id="webmention_avatars" value="1" <?php
130-
echo checked( true, get_option( 'webmention_avatars' ) ); ?> />
130+
echo checked( true, get_option( 'webmention_avatars', 1 ) ); ?> />
131131
<?php _e( 'Show avatars on webmentions if available.', 'webmention' ) ?>
132132
</label>
133133
</fieldset>

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.6
8+
* Version: 3.8.7
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: webmention

0 commit comments

Comments
 (0)