Google Analyticator - Version 6.5.0.0

Version Description

  • Fix bug with options page not showing correctly in some cases.
Download this release

Release Info

Developer grimmdude
Plugin Icon 128x128 Google Analyticator
Version 6.5.0.0
Comparing to
See all releases

Code changes from version 6.4.9.7 to 6.5.0.0

google-analyticator.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Plugin Name: Google Analyticator
4
- * Version: 6.4.9.7
5
  * Plugin URI: http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=readme-txt
6
  * Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set.
7
  * Author: SumoMe
@@ -12,7 +12,7 @@
12
  //error_reporting(E_ALL);
13
  //ini_set('display_errors', '1');
14
 
15
- define('GOOGLE_ANALYTICATOR_VERSION', '6.4.9');
16
 
17
  define('GOOGLE_ANALYTICATOR_CLIENTID', '1007949979410.apps.googleusercontent.com');
18
  define('GOOGLE_ANALYTICATOR_CLIENTSECRET', 'q06U41XDXtzaXD14E-KO1hti'); //don't worry - this don't need to be secret in our case
1
  <?php
2
  /*
3
  * Plugin Name: Google Analyticator
4
+ * Version: 6.5.0.0
5
  * Plugin URI: http://www.videousermanuals.com/google-analyticator/?utm_campaign=analyticator&utm_medium=plugin&utm_source=readme-txt
6
  * Description: Adds the necessary JavaScript code to enable <a href="http://www.google.com/analytics/">Google's Analytics</a>. After enabling this plugin you need to authenticate with Google, then select your domain and you're set.
7
  * Author: SumoMe
12
  //error_reporting(E_ALL);
13
  //ini_set('display_errors', '1');
14
 
15
+ define('GOOGLE_ANALYTICATOR_VERSION', '6.5.0');
16
 
17
  define('GOOGLE_ANALYTICATOR_CLIENTID', '1007949979410.apps.googleusercontent.com');
18
  define('GOOGLE_ANALYTICATOR_CLIENTSECRET', 'q06U41XDXtzaXD14E-KO1hti'); //don't worry - this don't need to be secret in our case
google-api-php-client/src/Google_Client.php CHANGED
@@ -32,7 +32,7 @@ define("GA_API_Path", dirname(__FILE__) .'/');
32
  // hack around with the include paths a bit so the library 'just works'
33
  //set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
34
 
35
- require_once "config.php";
36
  // If a local configuration file is found, merge it's values with the default configuration
37
  if (file_exists(dirname(__FILE__) . '/local_config.php')) {
38
  $defaultConfig = $apiConfig;
32
  // hack around with the include paths a bit so the library 'just works'
33
  //set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
34
 
35
+ require_once (dirname(__FILE__) . "/config.php");
36
  // If a local configuration file is found, merge it's values with the default configuration
37
  if (file_exists(dirname(__FILE__) . '/local_config.php')) {
38
  $defaultConfig = $apiConfig;
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: noahkagan
3
  Tags: google analytics plugin, stats, statistics, google, analytics, dashboard, google analytics, tracking, widget, marketing,pageviews,visits, web stats, javascript
4
  Requires at least: 3.2
5
- Tested up to: 4.5
6
- Stable tag: 6.4.9.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -74,6 +74,9 @@ For any support issues, please use the official WordPress support forums.
74
 
75
  == Changelog ==
76
 
 
 
 
77
  = 6.4.9.7 =
78
  * Minor code cleanup changes.
79
 
2
  Contributors: noahkagan
3
  Tags: google analytics plugin, stats, statistics, google, analytics, dashboard, google analytics, tracking, widget, marketing,pageviews,visits, web stats, javascript
4
  Requires at least: 3.2
5
+ Tested up to: 4.6
6
+ Stable tag: 6.5.0.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
74
 
75
  == Changelog ==
76
 
77
+ = 6.5.0.0 =
78
+ * Fix bug with options page not showing correctly in some cases.
79
+
80
  = 6.4.9.7 =
81
  * Minor code cleanup changes.
82