Skip to content

Commit d2d7b9a

Browse files
authored
Merge pull request #207 from pfefferle/parentheses
Parentheses
2 parents 45e2c08 + 5e3803a commit d2d7b9a

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
@@ -33,7 +33,7 @@ public static function init() {
3333
add_filter( 'webmention_comment_data', array( 'Webmention_Receiver', 'default_title_filter' ), 21, 1 );
3434
add_filter( 'webmention_comment_data', array( 'Webmention_Receiver', 'default_content_filter' ), 22, 1 );
3535

36-
add_filter( 'webmention_comment_data', array( 'Webmention_Receiver', 'auto_approve', 13, 1 ) );
36+
add_filter( 'webmention_comment_data', array( 'Webmention_Receiver', 'auto_approve' ), 13, 1 );
3737

3838
// Allow for avatars on webmention comment types
3939
if ( 0 !== (int) get_option( 'webmention_avatars', 1 ) ) {

languages/webmention.pot

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This file is distributed under the MIT.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Webmention 3.8.10\n"
5+
"Project-Id-Version: Webmention 3.8.11\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/wordpress-webmention\n"
8-
"POT-Creation-Date: 2019-08-02 11:47:04+00:00\n"
8+
"POT-Creation-Date: 2019-08-03 20:06:12+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"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:** 5.2.2
9-
**Stable tag:** 3.8.10
9+
**Stable tag:** 3.8.11
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.11 ###
84+
85+
* Minor bug fix
86+
8387
### 3.8.10 ###
8488

8589
* Always enable webmentions on basis that using plugin means you want webmentions instead of using default pingback 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: 5.2.2
7-
Stable tag: 3.8.10
7+
Stable tag: 3.8.11
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.11 =
82+
83+
* Minor bug fix
84+
8185
= 3.8.10 =
8286

8387
* Always enable webmentions on basis that using plugin means you want webmentions instead of using default pingback 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.10
8+
* Version: 3.8.11
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: webmention

0 commit comments

Comments
 (0)