Say what? - Version 1.1

Version Description

Fix incorrect escaping on the admin screens.

Download this release

Release Info

Developer leewillis77
Plugin Icon 128x128 Say what?
Version 1.1
Comparing to
See all releases

Code changes from version 1.0.1 to 1.1

Files changed (3) hide show
  1. readme.txt +4 -1
  2. say-what-list-table.class.php +1 -1
  3. say-what.php +1 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.leewillis.co.uk/wordpress-plugins/?utm_source=wordpress&
4
  Tags: string, change, translation
5
  Requires at least: 3.5
6
  Tested up to: 4.0
7
- Stable tag: 1.0.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!
@@ -38,6 +38,9 @@ You can either have a guess, or checkout the plugin in question's source code, t
38
 
39
  == Changelog ==
40
 
 
 
 
41
  = 1.0.1 =
42
  Fix initial DB table creation
43
  Fix translations for strings with no domain
4
  Tags: string, change, translation
5
  Requires at least: 3.5
6
  Tested up to: 4.0
7
+ Stable tag: 1.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!
38
 
39
  == Changelog ==
40
 
41
+ = 1.1 =
42
+ Fix incorrect escaping on the admin screens.
43
+
44
  = 1.0.1 =
45
  Fix initial DB table creation
46
  Fix translations for strings with no domain
say-what-list-table.class.php CHANGED
@@ -103,7 +103,7 @@ class say_what_list_table extends WP_List_Table {
103
  * Output column data
104
  */
105
  function column_default( $item, $column_name ) {
106
- return $item[$column_name];
107
  }
108
 
109
  /**
103
  * Output column data
104
  */
105
  function column_default( $item, $column_name ) {
106
+ return esc_html( $item[$column_name] );
107
  }
108
 
109
  /**
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.0.1
8
  Author: Lee Willis
9
  Author URI: http://www.leewillis.co.uk/
10
  */
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.1
8
  Author: Lee Willis
9
  Author URI: http://www.leewillis.co.uk/
10
  */