Skip to content

Commit 8313357

Browse files
authored
Merge pull request #16 from dartiss/develop
Version 1.1.4
2 parents 1881ba8 + 9d16ee8 commit 8313357

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

no-self-pings.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22
/**
33
Plugin Name: No Self Pings
4-
Plugin URI: https://github.com/dartiss/no-self-ping
4+
Plugin URI: https://wordpress.org/plugins/no-self-ping/
55
Description: 🏓 Keeps WordPress from sending pings to your own site.
6-
Version: 1.1.3
6+
Version: 1.1.4
77
Author: David Artiss
88
Author URI: https://artiss.blog
99
Text Domain: no-self-ping
@@ -131,7 +131,7 @@ function no_self_pings_settings_init() {
131131
function no_self_pings_section_callback() {
132132

133133
/* translators: %s: URL of website */
134-
esc_attr( sprintf( __( 'By default, No Self Pings will exclude pings for this site (%s) but you can supply additional URLs below. Separate multiple URLs with line breaks.', 'no-self-ping' ), esc_url( home_url() ) ) );
134+
echo sprintf( esc_attr_e( 'By default, No Self Pings will exclude pings for this site (%s) but you can supply additional URLs below. Separate multiple URLs with line breaks.', 'no-self-ping' ), esc_url( home_url() ) );
135135

136136
}
137137

@@ -144,6 +144,6 @@ function no_self_pings_setting_callback() {
144144

145145
$urls = sanitize_option( 'ping_sites', get_option( 'no_self_pings_option', '' ) );
146146

147-
echo '<label>Additional URLs<textarea name="no_self_pings_option" rows="3" class="large-text code">' . esc_attr( $urls ) . '</textarea></label>';
147+
echo '<textarea name="no_self_pings_option" rows="3" class="large-text code">' . esc_attr( $urls ) . '</textarea>';
148148

149149
}

readme.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Contributors: mdawaffe, dartiss
33
Donate link: https://artiss.blog/donate
44
Tags: pingback, ping, trackback
55
Requires at least: 4.6
6-
Tested up to: 5.4
6+
Tested up to: 5.5
77
Requires PHP: 5.3
8-
Stable tag: 1.1.3
8+
Stable tag: 1.1.4
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -21,6 +21,8 @@ This plugin disables intra-blog pinging.
2121

2222
Once activated, there's nothing for you to do. However, head to Settings -> Discussion and you'll find a field in which you can, if you wish, specify more domains that won't be pinged. Why? Well, maybe you often refer to other sites that you maintain or, particularly, you run a multi-site and don't want each blog pinging the other - specify a list here and you're sorted.
2323

24+
Iconography is courtesy of the very talented [Janki Rathod](https://www.linkedin.com/in/jankirathore/).
25+
2426
Please visit the [Github page](https://github.com/dartiss/no-self-ping "Github") for the latest code development, planned enhancements and known issues.
2527

2628
This plugin was original developed by the awesome [Michael D. Adams](https://profiles.wordpress.org/mdawaffe/).
@@ -42,6 +44,9 @@ It's now ready to go.
4244

4345
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
4446

47+
= 1.1.4 =
48+
* Bug: Fixed some missing output on the settings screen. Oopsie
49+
4550
= 1.1.3 =
4651
* Enhancement: Improved plugin meta
4752
* Maintenance: Beefed up code quality even more
@@ -69,5 +74,5 @@ It's now ready to go.
6974

7075
== Upgrade Notice ==
7176

72-
= 1.1.3 =
73-
* Code quality and plugin meta improvements
77+
= 1.1.4 =
78+
* Fixed an issue with the settings output

0 commit comments

Comments
 (0)