WP Statistics - Version 7.0.4

Version Description

  • Fixed: Typo in table definition of visitor table's UAString field.
Download this release

Release Info

Developer GregRoss
Plugin Icon 128x128 WP Statistics
Version 7.0.4
Comparing to
See all releases

Code changes from version 7.0.3 to 7.0.4

Files changed (4) hide show
  1. includes/log/log.php +2 -0
  2. readme.txt +4 -1
  3. wp-statistics.php +2 -2
  4. wps-install.php +1 -1
includes/log/log.php CHANGED
@@ -532,6 +532,8 @@
532
  </tr>
533
 
534
  <?php
 
 
535
  $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$table_prefix}statistics_visitor`");
536
 
537
  foreach( $result as $item )
532
  </tr>
533
 
534
  <?php
535
+ $Countries = array();
536
+
537
  $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$table_prefix}statistics_visitor`");
538
 
539
  foreach( $result as $item )
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, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.9.1
7
- Stable tag: 7.0.3
8
  License: GPL2
9
 
10
  Complete statistics for your WordPress site.
@@ -154,6 +154,9 @@ You can also ask MaxMind to unblock your host. Note that automatic updates will
154
  * If you have enabled statistical reporting you can now use any shortcode that is supported in your WordPress installation, the old variables will continue to work for the time being, however in a future version of WP Statistics they will be removed so please update your message text now with the appropriate shortcodes.
155
 
156
  == Changelog ==
 
 
 
157
  = 7.0.3 =
158
  * Added: Extra check that the co-efficient setting is valid.
159
  * Updated: Format of the dbDetla scripts to match the guidelines from WordPress, thanks kitchin.
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.9.1
7
+ Stable tag: 7.0.4
8
  License: GPL2
9
 
10
  Complete statistics for your WordPress site.
154
  * If you have enabled statistical reporting you can now use any shortcode that is supported in your WordPress installation, the old variables will continue to work for the time being, however in a future version of WP Statistics they will be removed so please update your message text now with the appropriate shortcodes.
155
 
156
  == Changelog ==
157
+ = 7.0.4 =
158
+ * Fixed: Typo in table definition of visitor table's UAString field.
159
+
160
  = 7.0.3 =
161
  * Added: Extra check that the co-efficient setting is valid.
162
  * Updated: Format of the dbDetla scripts to match the guidelines from WordPress, thanks kitchin.
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: 7.0.3
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', '7.0.3');
21
  define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
22
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
23
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
3
  Plugin Name: WP Statistics
4
  Plugin URI: http://wp-statistics.com/
5
  Description: Complete statistics for your WordPress site.
6
+ Version: 7.0.4
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', '7.0.4');
21
  define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
22
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
23
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
wps-install.php CHANGED
@@ -32,7 +32,7 @@
32
  agent varchar(255) NOT NULL,
33
  platform varchar(255),
34
  version varchar(255),
35
- AString varchar(255),
36
  ip varchar(20) NOT NULL,
37
  location varchar(10),
38
  PRIMARY KEY (ID),
32
  agent varchar(255) NOT NULL,
33
  platform varchar(255),
34
  version varchar(255),
35
+ UAString varchar(255),
36
  ip varchar(20) NOT NULL,
37
  location varchar(10),
38
  PRIMARY KEY (ID),