Yet Another Related Posts Plugin (YARPP) - Version 3.3.1

Version Description

  • Quick bugfix to relatedness options panel bug
Download this release

Release Info

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

Code changes from version 3.3 to 3.3.1

Files changed (3) hide show
  1. options.php +1 -7
  2. readme.txt +3 -1
  3. yarpp.php +2 -2
options.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- global $wpdb, $yarpp_value_options, $yarpp_binary_options, $wp_version, $yarpp_cache, $yarpp_templateable;
4
 
5
  // Reenforce YARPP setup:
6
  if (!get_option('yarpp_version'))
@@ -123,12 +123,6 @@ jQuery(function() {
123
  postboxes.add_postbox_toggles(pagenow);
124
  });
125
 
126
- /*var css = document.createElement("link");
127
- css.setAttribute("rel", "stylesheet");
128
- css.setAttribute("type", "text/css");
129
- css.setAttribute("href", "../wp-content/plugins/yet-another-related-posts-plugin/options.css");
130
- document.getElementsByTagName("head")[0].appendChild(css);*/
131
-
132
  var spinner = '<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>';
133
 
134
  function load_display_demo_web() {
1
  <?php
2
 
3
+ global $wpdb, $yarpp_value_options, $yarpp_binary_options, $wp_version, $yarpp_cache, $yarpp_templateable, $yarpp_myisam;
4
 
5
  // Reenforce YARPP setup:
6
  if (!get_option('yarpp_version'))
123
  postboxes.add_postbox_toggles(pagenow);
124
  });
125
 
 
 
 
 
 
 
126
  var spinner = '<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>';
127
 
128
  function load_display_demo_web() {
readme.txt CHANGED
@@ -7,7 +7,7 @@ Donate link: http://tinyurl.com/donatetomitcho
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 3.0
9
  Tested up to: 3.2
10
- Stable tag: 3.3
11
 
12
  Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.
13
 
@@ -195,6 +195,8 @@ If you are a bilingual speaker of English and another language and an avid user
195
 
196
  == Changelog ==
197
 
 
 
198
  = 3.3 =
199
  * Pretty major rewrite to the options page for extensibility and screen options support
200
  * By default, the options screen now only show the display options. "The Pool" and "Relatedness" options can be shown in the screen options tab in the top right corner of the screen.
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 3.0
9
  Tested up to: 3.2
10
+ Stable tag: 3.3.1
11
 
12
  Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.
13
 
195
 
196
  == Changelog ==
197
 
198
+ = 3.3.1 =
199
+ * Quick bugfix to [relatedness options panel bug](http://wordpress.org/support/topic/relatedness-options-for-titles-and-bodies-cant-be-changed)
200
  = 3.3 =
201
  * Pretty major rewrite to the options page for extensibility and screen options support
202
  * By default, the options screen now only show the display options. "The Pool" and "Relatedness" options can be shown in the screen options tab in the top right corner of the screen.
yarpp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
- Version: 3.3
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
@@ -13,7 +13,7 @@ Donate link: http://tinyurl.com/donatetomitcho
13
  if (isset($_REQUEST['yarpp_debug']))
14
  $yarpp_debug = true;
15
 
16
- define('YARPP_VERSION','3.3');
17
  define('YARPP_DIR',dirname(__FILE__));
18
 
19
  require_once(YARPP_DIR.'/includes.php');
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
+ Version: 3.3.1
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
13
  if (isset($_REQUEST['yarpp_debug']))
14
  $yarpp_debug = true;
15
 
16
+ define('YARPP_VERSION','3.3.1');
17
  define('YARPP_DIR',dirname(__FILE__));
18
 
19
  require_once(YARPP_DIR.'/includes.php');