Version Description
- Fixed: Variable scope for the exclusion match/reason updated to protected from private to allow the GeoIP code to set them. This could cause various issues including failed uploades depending on the error reporting level set for PHP.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 8.7.1 |
Comparing to | |
See all releases |
Code changes from version 8.7 to 8.7.1
- includes/classes/hits.class.php +2 -2
- readme.txt +4 -1
- wp-statistics.php +2 -2
includes/classes/hits.class.php
CHANGED
@@ -12,9 +12,9 @@
|
|
12 |
public $result = null;
|
13 |
|
14 |
protected $location = "000";
|
|
|
|
|
15 |
|
16 |
-
private $exclusion_match = FALSE;
|
17 |
-
private $exclusion_reason = '';
|
18 |
private $exclusion_record = FALSE;
|
19 |
private $timestamp;
|
20 |
private $second;
|
12 |
public $result = null;
|
13 |
|
14 |
protected $location = "000";
|
15 |
+
protected $exclusion_match = FALSE;
|
16 |
+
protected $exclusion_reason = '';
|
17 |
|
|
|
|
|
18 |
private $exclusion_record = FALSE;
|
19 |
private $timestamp;
|
20 |
private $second;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mostafa-soufi.ir/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 8.7
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -214,6 +214,9 @@ BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure
|
|
214 |
Support for old format substitution codes in the statistics reports has been removed, the upgrade now converts them to short codes but you should verify the report content after upgrading.
|
215 |
|
216 |
== Changelog ==
|
|
|
|
|
|
|
217 |
= 8.7 =
|
218 |
* Added: Charts with multiple lines now include the data set name in the tooltip.
|
219 |
* Added: Honey pot option to detect crawlers.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 8.7.1
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
214 |
Support for old format substitution codes in the statistics reports has been removed, the upgrade now converts them to short codes but you should verify the report content after upgrading.
|
215 |
|
216 |
== Changelog ==
|
217 |
+
= 8.7.1 =
|
218 |
+
* Fixed: Variable scope for the exclusion match/reason updated to protected from private to allow the GeoIP code to set them. This could cause various issues including failed uploades depending on the error reporting level set for PHP.
|
219 |
+
|
220 |
= 8.7 =
|
221 |
* Added: Charts with multiple lines now include the data set name in the tooltip.
|
222 |
* Added: Honey pot option to detect crawlers.
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
-
Version: 8.7
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
@@ -17,7 +17,7 @@ License: GPL2
|
|
17 |
}
|
18 |
|
19 |
// These defines are used later for various reasons.
|
20 |
-
define('WP_STATISTICS_VERSION', '8.7');
|
21 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
22 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
23 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 8.7.1
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
17 |
}
|
18 |
|
19 |
// These defines are used later for various reasons.
|
20 |
+
define('WP_STATISTICS_VERSION', '8.7.1');
|
21 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
22 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
23 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|