Skip to content

Commit d785d59

Browse files
committed
fixed WEBMENTION_PROCESS_TYPE
thanks @acegiak and @dshanske
1 parent f7ace8d commit d785d59

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Donate link:** http://14101978.de
66
**Tags:** webmention, pingback, trackback, linkback, indieweb
77
**Requires at least:** 4.7
8-
**Tested up to:** 4.7.1
8+
**Tested up to:** 4.7.2
99
**Stable tag:** 3.0.0
1010
**License:** MIT
1111
**License URI:** http://opensource.org/licenses/MIT

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: pfefferle, dshanske
33
Donate link: http://14101978.de
44
Tags: webmention, pingback, trackback, linkback, indieweb
55
Requires at least: 4.7
6-
Tested up to: 4.7.1
6+
Tested up to: 4.7.2
77
Stable tag: 3.0.0
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT

webmention.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414

1515
defined( 'WEBMENTION_COMMENT_APPROVE' ) || define( 'WEBMENTION_COMMENT_APPROVE', 0 );
1616
defined( 'WEBMENTION_COMMENT_TYPE' ) || define( 'WEBMENTION_COMMENT_TYPE', 'webmention' );
17-
defined( 'WEBMENTION_PROCESS_TYPE' ) || define( 'WEBMENTION_PROCESS_TYPE', 'async' );
1817

1918
define( 'WEBMENTION_PROCESS_TYPE_ASYNC', 'async' );
2019
define( 'WEBMENTION_PROCESS_TYPE_SYNC', 'sync' );
2120

21+
defined( 'WEBMENTION_PROCESS_TYPE' ) || define( 'WEBMENTION_PROCESS_TYPE', WEBMENTION_PROCESS_TYPE_SYNC );
22+
2223
add_action( 'plugins_loaded', array( 'Webmention_Plugin', 'init' ) );
2324

2425
/**

0 commit comments

Comments
 (0)