Yet Another Related Posts Plugin (YARPP) - Version 2.1.2

Version Description

Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 2.1.2
Comparing to
See all releases

Code changes from version 2.1.1 to 2.1.2

Files changed (3) hide show
  1. includes.php +4 -4
  2. readme.txt +3 -1
  3. yarpp.php +1 -1
includes.php CHANGED
@@ -84,8 +84,8 @@ function yarpp_activate() {
84
  return 0;
85
  }
86
  }
87
- add_option('yarpp_version','2.11');
88
- update_option('yarpp_version','2.11');
89
  return 1;
90
  }
91
 
@@ -138,8 +138,8 @@ function yarpp_upgrade_check($inuse = false) {
138
  $wpdb->query("ALTER TABLE $wpdb->posts ADD FULLTEXT `yarpp_content` ( `post_content`)"); update_option('yarpp_version','2.03');
139
  }
140
 
141
- if (get_option('yarpp_version') < 2.11) {
142
- update_option('yarpp_version','2.11');
143
  }
144
 
145
  // just in case, try to add the index one more time.
84
  return 0;
85
  }
86
  }
87
+ add_option('yarpp_version','2.12');
88
+ update_option('yarpp_version','2.12');
89
  return 1;
90
  }
91
 
138
  $wpdb->query("ALTER TABLE $wpdb->posts ADD FULLTEXT `yarpp_content` ( `post_content`)"); update_option('yarpp_version','2.03');
139
  }
140
 
141
+ if (get_option('yarpp_version') < 2.12) {
142
+ update_option('yarpp_version','2.12');
143
  }
144
 
145
  // just in case, try to add the index one more time.
readme.txt CHANGED
@@ -7,7 +7,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mitcho%4
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 2.3
9
  Tested up to: 2.7
10
- Stable tag: 2.1.1
11
 
12
  Returns a list of the related entries based on a unique algorithm using titles, post bodies, tags, and categories. Now with RSS feed support!
13
 
@@ -207,6 +207,8 @@ If you are a bilingual speaker of English and another language and an avid user
207
  * Bugfix: Added an override option for the [false MyISAM warnings](http://wordpress.org/support/topic/211043).
208
  * Preparing for localization! (See note at the bottom of the FAQ.)
209
  * Adding a debug mode--just try adding `&yarpp_debug=1` to your URL's and look at the HTML source.
 
 
210
 
211
  == Future versions ==
212
 
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 2.3
9
  Tested up to: 2.7
10
+ Stable tag: 2.1.2
11
 
12
  Returns a list of the related entries based on a unique algorithm using titles, post bodies, tags, and categories. Now with RSS feed support!
13
 
207
  * Bugfix: Added an override option for the [false MyISAM warnings](http://wordpress.org/support/topic/211043).
208
  * Preparing for localization! (See note at the bottom of the FAQ.)
209
  * Adding a debug mode--just try adding `&yarpp_debug=1` to your URL's and look at the HTML source.
210
+ * 2.1.2
211
+ * Bugfix: MyISAM override handling bug
212
 
213
  == Future versions ==
214
 
yarpp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://mitcho.com/code/yarpp/
5
  Description: Returns a list of the related entries based on a unique algorithm using titles, post bodies, tags, and categories. Now with RSS feed support!
6
- Version: 2.1.1
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  */
9
 
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://mitcho.com/code/yarpp/
5
  Description: Returns a list of the related entries based on a unique algorithm using titles, post bodies, tags, and categories. Now with RSS feed support!
6
+ Version: 2.1.2
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  */
9