SNS Count Cache - Version 1.1.1

Version Description

  • Fixed: Error of "Fatal error: Declaration of SNS_Count_Cache::order ... ".

=

Download this release

Release Info

Developer marubon
Plugin Icon SNS Count Cache
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

includes/interface-scc-order.php CHANGED
@@ -60,12 +60,12 @@ interface SCC_Order {
60
  /**
61
  * Order
62
  *
63
- * @param SCC_Cache_Engine $engine Instance.
64
  * @param string $order Order.
65
  * @param array $options Option.
66
  * @return mixed
67
  */
68
- public function order( SCC_Cache_Engine $engine, $order, $options = array() );
69
  }
70
 
71
  ?>
60
  /**
61
  * Order
62
  *
63
+ * @param mixed $source Source Instance.
64
  * @param string $order Order.
65
  * @param array $options Option.
66
  * @return mixed
67
  */
68
+ public function order( $source, $order, $options = array() );
69
  }
70
 
71
  ?>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: performance, SNS, social, cache, share, follower
5
  Requires at least: 3.7
6
  Tested up to: 5.2
7
- Stable tag: 1.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -197,6 +197,9 @@ There are no questions.
197
  * Fixed: Fault tolerance mode does not work.
198
  * Removed: Function to retrieve Twittr share count from NewShareCounts because the count is no longer provided by the site.
199
 
 
 
 
200
  == Upgrade Notice ==
201
  In the upgrade from Ver. 0.11.1 or below, Reregistration of information such as client ID, client secret, and access token is needed in the setting page.
202
 
4
  Tags: performance, SNS, social, cache, share, follower
5
  Requires at least: 3.7
6
  Tested up to: 5.2
7
+ Stable tag: 1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
197
  * Fixed: Fault tolerance mode does not work.
198
  * Removed: Function to retrieve Twittr share count from NewShareCounts because the count is no longer provided by the site.
199
 
200
+ = 1.1.1 =
201
+ * Fixed: Error of "Fatal error: Declaration of SNS_Count_Cache::order ... ".
202
+
203
  == Upgrade Notice ==
204
  In the upgrade from Ver. 0.11.1 or below, Reregistration of information such as client ID, client secret, and access token is needed in the setting page.
205
 
sns-count-cache.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  Plugin Name: SNS Count Cache
4
  Description: SNS Count Cache gets share count for Twitter and Facebook, Pocket, Pinterest, Linkedin, Hatena Bookmark and caches these count in the background. This plugin may help you to shorten page loading time because the share count can be retrieved not through network but through the cache using given functions.
5
- Version: 1.1.0
6
  Plugin URI: https://wordpress.org/plugins/sns-count-cache/
7
  Author: Daisuke Maruyama
8
  Author URI: https://logicore.cc/
@@ -736,7 +736,7 @@ if ( ! class_exists( 'SNS_Count_Cache' ) ) {
736
  * Plugin version, used for cache-busting of style and script file references.
737
  * @var string
738
  */
739
- private $version = '1.1.0';
740
 
741
  /**
742
  * Instances of crawler
2
  /**
3
  Plugin Name: SNS Count Cache
4
  Description: SNS Count Cache gets share count for Twitter and Facebook, Pocket, Pinterest, Linkedin, Hatena Bookmark and caches these count in the background. This plugin may help you to shorten page loading time because the share count can be retrieved not through network but through the cache using given functions.
5
+ Version: 1.1.1
6
  Plugin URI: https://wordpress.org/plugins/sns-count-cache/
7
  Author: Daisuke Maruyama
8
  Author URI: https://logicore.cc/
736
  * Plugin version, used for cache-busting of style and script file references.
737
  * @var string
738
  */
739
+ private $version = '1.1.1';
740
 
741
  /**
742
  * Instances of crawler