Say what? - Version 0.9.1

Version Description

Fix issue with fields being swapped when first entered

Download this release

Release Info

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

Code changes from version 0.9 to 0.9.1

css/admin.css CHANGED
@@ -1,9 +1,9 @@
1
  .wp-list-table .column-orig_string {
2
- width: 40%;
3
  }
4
  .wp-list-table .column-replacement_string{
5
- width: 40%;
6
  }
7
  .wp-list-table .column-domain {
8
- width: 10%;
9
  }
1
  .wp-list-table .column-orig_string {
2
+ width: 35%;
3
  }
4
  .wp-list-table .column-replacement_string{
5
+ width: 35%;
6
  }
7
  .wp-list-table .column-domain {
8
+ width: 15%;
9
  }
readme.txt CHANGED
@@ -4,11 +4,13 @@ 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: 3.5.1
7
- Stable tag: 0.9
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!
11
 
 
 
12
  == Installation ==
13
 
14
  * Install it as you would any other plugin
@@ -36,5 +38,8 @@ You can either have a guess, or checkout the plugin in question's source code, t
36
 
37
  == Changelog ==
38
 
 
 
 
39
  = 0.9 =
40
- Beta ready for testing and feedback
4
  Tags: string, change, translation
5
  Requires at least: 3.5
6
  Tested up to: 3.5.1
7
+ Stable tag: 0.9.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!
11
 
12
+ The plugin's available for forking and contribution over on [GitHub](https://github.com/leewillis77/say-what)
13
+
14
  == Installation ==
15
 
16
  * Install it as you would any other plugin
38
 
39
  == Changelog ==
40
 
41
+ = 0.9.1 =
42
+ Fix issue with fields being swapped when first entered
43
+
44
  = 0.9 =
45
+ Beta ready for testing and feedback
say-what-admin.php CHANGED
@@ -234,8 +234,8 @@ class say_what_admin {
234
 
235
  $wpdb->query ( $wpdb->prepare ( $sql,
236
  $_POST['say_what_orig_string'],
237
- $_POST['say_what_replacement_string'],
238
- $_POST['say_what_domain']
239
  )
240
  );
241
 
234
 
235
  $wpdb->query ( $wpdb->prepare ( $sql,
236
  $_POST['say_what_orig_string'],
237
+ $_POST['say_what_domain'],
238
+ $_POST['say_what_replacement_string']
239
  )
240
  );
241
 
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: 0.9
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: 0.9.1
8
  Author: Lee Willis
9
  Author URI: http://www.leewillis.co.uk/
10
  */
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file