Version Description
Download this release
Release Info
Developer | leewillis77 |
Plugin | Say what? |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.8.0
- html/say-what-admin-addedit.php +3 -3
- readme.txt +5 -2
- say-what.php +1 -1
html/say-what-admin-addedit.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<?php endif; ?>
|
13 |
<p>
|
14 |
<label for="say_what_orig_string"><?php _e( 'Original string', 'say_what' ); ?></label><br/>
|
15 |
-
<textarea class="say_what_orig_string" name="say_what_orig_string" rows="1" cols="120"><?php echo esc_textarea(
|
16 |
</p>
|
17 |
<p>
|
18 |
<label for="say_what_domain"><?php _e( 'Text domain', 'say_what' ); ?></label> <a href="http://plugins.leewillis.co.uk/doc_post/adding-string-replacement/"><i class="dashicons dashicons-info"> </i></a><br/>
|
@@ -24,11 +24,11 @@
|
|
24 |
</p>
|
25 |
<p>
|
26 |
<label for="say_what_replacement_string"><?php _e( 'Replacement string', 'say_what' ); ?></label><br/>
|
27 |
-
<textarea class="say_what_replacement_string" name="say_what_replacement_string" cols="120" rows="1"><?php echo esc_textarea(
|
28 |
</p>
|
29 |
<p>
|
30 |
<input type="submit" class="button-primary" value="<?php ! empty( $replacement->string_id ) ? _e( 'Update', 'say_what' ) : _e( 'Add', 'say_what' ); ?>">
|
31 |
</p>
|
32 |
</form>
|
33 |
|
34 |
-
</div>
|
12 |
<?php endif; ?>
|
13 |
<p>
|
14 |
<label for="say_what_orig_string"><?php _e( 'Original string', 'say_what' ); ?></label><br/>
|
15 |
+
<textarea class="say_what_orig_string" name="say_what_orig_string" rows="1" cols="120"><?php echo esc_textarea( $replacement->orig_string ); ?></textarea>
|
16 |
</p>
|
17 |
<p>
|
18 |
<label for="say_what_domain"><?php _e( 'Text domain', 'say_what' ); ?></label> <a href="http://plugins.leewillis.co.uk/doc_post/adding-string-replacement/"><i class="dashicons dashicons-info"> </i></a><br/>
|
24 |
</p>
|
25 |
<p>
|
26 |
<label for="say_what_replacement_string"><?php _e( 'Replacement string', 'say_what' ); ?></label><br/>
|
27 |
+
<textarea class="say_what_replacement_string" name="say_what_replacement_string" cols="120" rows="1"><?php echo esc_textarea( $replacement->replacement_string ); ?></textarea>
|
28 |
</p>
|
29 |
<p>
|
30 |
<input type="submit" class="button-primary" value="<?php ! empty( $replacement->string_id ) ? _e( 'Update', 'say_what' ) : _e( 'Add', 'say_what' ); ?>">
|
31 |
</p>
|
32 |
</form>
|
33 |
|
34 |
+
</div>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: leewillis77
|
|
3 |
Donate link: http://www.leewillis.co.uk/wordpress-plugins/?utm_source=wordpress&utm_medium=www&utm_campaign=say-what
|
4 |
Tags: string, change, translation
|
5 |
Requires at least: 4.3
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
== Description ==
|
10 |
An easy-to-use plugin that allows you to alter strings on your site without editing WordPress core, or plugin code. Simply enter the current string, and what you want to replace it with and the plugin will automatically do the rest!
|
@@ -51,6 +51,9 @@ See the [GitHub homepage](https://github.com/leewillis77/say-what) for examples.
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
54 |
= 1.7.1 =
|
55 |
* Update to admin marketing message. No functional changes.
|
56 |
|
3 |
Donate link: http://www.leewillis.co.uk/wordpress-plugins/?utm_source=wordpress&utm_medium=www&utm_campaign=say-what
|
4 |
Tags: string, change, translation
|
5 |
Requires at least: 4.3
|
6 |
+
Tested up to: 4.7
|
7 |
+
Stable tag: 1.8.0
|
8 |
|
9 |
== Description ==
|
10 |
An easy-to-use plugin that allows you to alter strings on your site without editing WordPress core, or plugin code. Simply enter the current string, and what you want to replace it with and the plugin will automatically do the rest!
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.8.0 =
|
55 |
+
* Fix issues where entities could be double encoded on admin screens.
|
56 |
+
|
57 |
= 1.7.1 =
|
58 |
* Update to admin marketing message. No functional changes.
|
59 |
|
say-what.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Say What?
|
5 |
Plugin URI: https://github.com/leewillis77/say-what
|
6 |
Description: An easy-to-use plugin that allows you to alter strings on your site without editing WordPress core, or plugin code
|
7 |
-
Version: 1.
|
8 |
Author: Lee Willis
|
9 |
Author URI: http://www.leewillis.co.uk/
|
10 |
Text Domain: say_what
|
4 |
Plugin Name: Say What?
|
5 |
Plugin URI: https://github.com/leewillis77/say-what
|
6 |
Description: An easy-to-use plugin that allows you to alter strings on your site without editing WordPress core, or plugin code
|
7 |
+
Version: 1.8.0
|
8 |
Author: Lee Willis
|
9 |
Author URI: http://www.leewillis.co.uk/
|
10 |
Text Domain: say_what
|