Yet Another Related Posts Plugin (YARPP) - Version 4.3.5

Version Description

  • Fix 'unable to update'
Download this release

Release Info

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

Code changes from version 4.3.4 to 4.3.5

Files changed (2) hide show
  1. readme.txt +4 -1
  2. yarpp.php +3 -3
readme.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://www.yarpp.com/
6
  Tags: feeds, pages, posts, related, rss, yarpp, ads, multisite, multilingual, thumbnails, related posts, related content
7
  Requires at least: 3.3
8
  Tested up to: 4.7
9
- Stable tag: 4.3.4
10
  License: GPLv2 or later
11
 
12
  Display a list of related posts on your site based on a powerful unique algorithm.
@@ -283,6 +283,9 @@ YARPP is currently localized in the following languages:
283
 
284
  == Changelog ==
285
 
 
 
 
286
  = 4.3.4 =
287
  * Don't allow new YARPP Pro signups
288
  * Discontinuing the YARPP Pro service as of 01/31/2017
6
  Tags: feeds, pages, posts, related, rss, yarpp, ads, multisite, multilingual, thumbnails, related posts, related content
7
  Requires at least: 3.3
8
  Tested up to: 4.7
9
+ Stable tag: 4.3.5
10
  License: GPLv2 or later
11
 
12
  Display a list of related posts on your site based on a powerful unique algorithm.
283
 
284
  == Changelog ==
285
 
286
+ = 4.3.5 =
287
+ * Fix 'unable to update'
288
+
289
  = 4.3.4 =
290
  * Don't allow new YARPP Pro signups
291
  * Discontinuing the YARPP Pro service as of 01/31/2017
yarpp.php CHANGED
@@ -2,7 +2,7 @@
2
  /*----------------------------------------------------------------------------------------------------------------------
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Description: Adds related posts to your site and in RSS feeds, based on a powerful, customizable algorithm.
5
- Version: 4.3.4
6
  Author: Adknowledge
7
  Author URI: http://www.yarpp.com/
8
  Plugin URI: http://www.yarpp.com/
@@ -14,7 +14,7 @@ if(!defined('WP_CONTENT_DIR')){
14
  define('WP_CONTENT_DIR', substr($tr,0,strrpos($tr,'/')));
15
  }
16
 
17
- define('YARPP_VERSION', '4.3.4');
18
  define('YARPP_DIR', dirname(__FILE__));
19
  define('YARPP_URL', plugins_url('',__FILE__));
20
  define('YARPP_NO_RELATED', ':(');
@@ -47,12 +47,12 @@ switch(YARPP_CACHE_TYPE){
47
  if(!defined('YARPP_EXTRA_WEIGHT')) define('YARPP_EXTRA_WEIGHT', 3);
48
 
49
  /* Includes ----------------------------------------------------------------------------------------------------------*/
50
- include_once(YARPP_DIR.'/includes/yarpp_force_basic.php');
51
  include_once(YARPP_DIR.'/includes/init_functions.php');
52
  include_once(YARPP_DIR.'/includes/related_functions.php');
53
  include_once(YARPP_DIR.'/includes/template_functions.php');
54
 
55
  include_once(YARPP_DIR.'/classes/YARPP_Core.php');
 
56
  include_once(YARPP_DIR.'/classes/YARPP_Cache.php');
57
  include_once(YARPP_DIR.'/classes/YARPP_Cache_Bypass.php');
58
  include_once(YARPP_DIR.'/classes/YARPP_Cache_'.ucfirst(YARPP_CACHE_TYPE).'.php');
2
  /*----------------------------------------------------------------------------------------------------------------------
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Description: Adds related posts to your site and in RSS feeds, based on a powerful, customizable algorithm.
5
+ Version: 4.3.5
6
  Author: Adknowledge
7
  Author URI: http://www.yarpp.com/
8
  Plugin URI: http://www.yarpp.com/
14
  define('WP_CONTENT_DIR', substr($tr,0,strrpos($tr,'/')));
15
  }
16
 
17
+ define('YARPP_VERSION', '4.3.5');
18
  define('YARPP_DIR', dirname(__FILE__));
19
  define('YARPP_URL', plugins_url('',__FILE__));
20
  define('YARPP_NO_RELATED', ':(');
47
  if(!defined('YARPP_EXTRA_WEIGHT')) define('YARPP_EXTRA_WEIGHT', 3);
48
 
49
  /* Includes ----------------------------------------------------------------------------------------------------------*/
 
50
  include_once(YARPP_DIR.'/includes/init_functions.php');
51
  include_once(YARPP_DIR.'/includes/related_functions.php');
52
  include_once(YARPP_DIR.'/includes/template_functions.php');
53
 
54
  include_once(YARPP_DIR.'/classes/YARPP_Core.php');
55
+ include_once(YARPP_DIR.'/classes/YARPP_Widget.php');
56
  include_once(YARPP_DIR.'/classes/YARPP_Cache.php');
57
  include_once(YARPP_DIR.'/classes/YARPP_Cache_Bypass.php');
58
  include_once(YARPP_DIR.'/classes/YARPP_Cache_'.ucfirst(YARPP_CACHE_TYPE).'.php');