WP Google Analytics - Version 1.2.1

Version Description

Download this release

Release Info

Developer aaroncampbell
Plugin Icon wp plugin WP Google Analytics
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.1

Files changed (2) hide show
  1. readme.txt +1 -1
  2. wp-google-analytics.php +7 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=paypal%4
4
  Tags: analytics, google, google analytics
5
  Requires at least: 1.5
6
  Tested up to: 2.5.1
7
- Stable tag: 1.2.0
8
 
9
  Lets you use <a href="http://analytics.google.com">Google Analytics</a> to track your WordPress site statistics
10
 
4
  Tags: analytics, google, google analytics
5
  Requires at least: 1.5
6
  Tested up to: 2.5.1
7
+ Stable tag: 1.2.1
8
 
9
  Lets you use <a href="http://analytics.google.com">Google Analytics</a> to track your WordPress site statistics
10
 
wp-google-analytics.php CHANGED
@@ -3,15 +3,18 @@
3
  * Plugin Name: WP Google Analytics
4
  * Plugin URI: http://xavisys.com/wordpress-google-analytics-plugin/
5
  * Description: Lets you use <a href="http://analytics.google.com">Google Analytics</a> to track your WordPress site statistics
6
- * Version: 1.2.0
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  */
10
 
11
- define('WGA_VERSION', '1.2.0');
12
  /**
13
  * Changelog:
14
- * 05/18/2008: 1.2.0
 
 
 
15
  * - No longer parses outgoing links in the admin section.
16
  * - Uses get_footer instead of wp_footer. Too many themes aren't adding the wp_footer call.
17
  * - Options page updated
@@ -454,5 +457,5 @@ add_action('admin_menu', array('wpGoogleAnalytics','admin_menu'));
454
  add_action('get_footer', array('wpGoogleAnalytics', 'insert_code'));
455
  add_action('init', array('wpGoogleAnalytics', 'start_ob'));
456
  add_action('update_option_wga-roles', array('wpGoogleAnalytics', 'updateOption'), null, 2);
457
- add_action('activate_wp-google-analytics/wp-google-analytics.php', array('wpGoogleAnalytics', 'updateOption'));
458
  ?>
3
  * Plugin Name: WP Google Analytics
4
  * Plugin URI: http://xavisys.com/wordpress-google-analytics-plugin/
5
  * Description: Lets you use <a href="http://analytics.google.com">Google Analytics</a> to track your WordPress site statistics
6
+ * Version: 1.2.1
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  */
10
 
11
+ define('WGA_VERSION', '1.2.1');
12
  /**
13
  * Changelog:
14
+ * 06/08/2008: 1.2.1
15
+ * - Bug fix for the stats gathering
16
+ *
17
+ * 06/08/2008: 1.2.0
18
  * - No longer parses outgoing links in the admin section.
19
  * - Uses get_footer instead of wp_footer. Too many themes aren't adding the wp_footer call.
20
  * - Options page updated
457
  add_action('get_footer', array('wpGoogleAnalytics', 'insert_code'));
458
  add_action('init', array('wpGoogleAnalytics', 'start_ob'));
459
  add_action('update_option_wga-roles', array('wpGoogleAnalytics', 'updateOption'), null, 2);
460
+ add_action('activate_wp-google-analytics/wp-google-analytics.php', array('wpGoogleAnalytics', 'activatePlugin'));
461
  ?>