You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 4, 2023. It is now read-only.
@@ -85,6 +86,12 @@ The plugin uses a locally cached version of the mystery icon normally provided b
85
86
86
87
Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.
87
88
89
+
### 3.8.1 ###
90
+
* Add follow post as type
91
+
* Add warning to settings page if php-mbstring not installed
92
+
* Return false in Emoji function if php-mbstring not installed
93
+
* Add approve link to emails sent
94
+
88
95
### 3.8.0 ###
89
96
90
97
* Add locally hosted copy of the mystery man icon and serve it if there is no gravatar
@@ -85,6 +86,12 @@ The plugin uses a locally cached version of the mystery icon normally provided b
85
86
86
87
Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.
87
88
89
+
= 3.8.1 =
90
+
* Add follow post as type
91
+
* Add warning to settings page if php-mbstring not installed
92
+
* Return false in Emoji function if php-mbstring not installed
93
+
* Add approve link to emails sent
94
+
88
95
= 3.8.0 =
89
96
90
97
* Add locally hosted copy of the mystery man icon and serve it if there is no gravatar
Copy file name to clipboardExpand all lines: semantic-linkbacks.php
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
* Description: Semantic Linkbacks for WebMentions, Trackbacks and Pingbacks
6
6
* Author: Matthias Pfefferle
7
7
* Author URI: https://notiz.blog/
8
-
* Version: 3.8.0
8
+
* Version: 3.8.1
9
9
* License: MIT
10
10
* License URI: http://opensource.org/licenses/MIT
11
11
* Text Domain: semantic-linkbacks
@@ -23,7 +23,7 @@
23
23
* @author Matthias Pfefferle
24
24
*/
25
25
class Semantic_Linkbacks_Plugin {
26
-
publicstatic$version = '3.8.0';
26
+
publicstatic$version = '3.8.1';
27
27
/**
28
28
* Initialize the plugin, registering WordPress hooks.
29
29
*/
@@ -132,6 +132,12 @@ public static function plugin_textdomain() {
132
132
*/
133
133
publicstaticfunctionsettings() {
134
134
_e( 'For webmentions that do not have avatars you can pick from several locally served default avatars in the Discussion Settings', 'semantic-linkbacks' );
135
+
136
+
if ( ! function_exists( 'mb_internal_encoding' ) ) {
137
+
?>
138
+
<p class="notice notice-warning"><?php_e( 'This server does not have the php-mbstring package installed and Emoji reactions have been disabled.', 'semantic-linkbacks' ); ?></p>
0 commit comments