diff -up a/ga_stats/README b/ga_stats/README
--- a/ga_stats/README	2012-02-01 13:32:39.000000000 -0500
+++ b/ga_stats/README	2012-02-03 14:13:16.000000000 -0500
@@ -1,3 +1,5 @@
+PATCHED as per http://drupal.org/node/1197744#comment-5428216
+
 Google Analytics Statistics - @author jcaldwell aka jec006
 
 A Drupal 7 module that provides views integration for the Google Analytics Data Export API.
@@ -5,4 +7,13 @@ A Drupal 7 module that provides views in
 This allows you to use Google Analytics directly through views to do things like Most Popular, Most Read ect.  
 You can combine the statistics to create interesting results.
 
-After you install the module - go to /admin/config/ga_stats to configure your Google Analytics account information and begin pulling statistics.
\ No newline at end of file
+After you install the module - go to /admin/config/ga_stats to configure your Google Analytics account information and begin pulling statistics.
+
+
+ *  patched as per
+ *  http://drupal.org/node/1197744#comment-5428216
+ 
+ *  updates as per...
+ *  http://drupal.org/node/1332240
+ *  http://drupalcode.org/project/ga_stats.git/commit/3d31a6d
+ 
diff -up a/ga_stats/ga_stats.info b/ga_stats/ga_stats.info
--- a/ga_stats/ga_stats.info	2012-02-01 19:33:53.000000000 -0500
+++ b/ga_stats/ga_stats.info	2012-01-30 14:42:28.000000000 -0500
@@ -1,11 +1,11 @@
-core = "7.x"
+core = "6.x"
 description = "Allows you to pull in data that Google Analytics has gathered for your site and use it in Views."
 name = "Google Analytics Statistics"
 package = "Statistics"
 
-; Information added by drupal.org packaging script on 2012-02-02
-version = "7.x-1.0-beta1+2-dev"
-core = "7.x"
+; Information added by drupal.org packaging script on 2011-10-12
+version = "6.x-1.0-beta1"
+core = "6.x"
 project = "ga_stats"
-datestamp = "1328142833"
+datestamp = "1318453907"
 
diff -up a/ga_stats/ga_stats.install b/ga_stats/ga_stats.install
--- a/ga_stats/ga_stats.install	2012-02-01 13:32:39.000000000 -0500
+++ b/ga_stats/ga_stats.install	2012-01-30 14:38:59.000000000 -0500
@@ -39,10 +39,10 @@ function ga_stats_schema() {
       ),
     ),
     'indexes' => array(
-      'ga_stats_metric' => array('metric'), 
+      'ga_stats_metric' => array('metric'),
       'ga_stats_timeframe' => array('timeframe'),
       'ga_stats_nid' => array('nid')
-    ) 
+    )
   );
   return $schema;
 }
@@ -51,7 +51,7 @@ function ga_stats_schema() {
  * Implementation of hook_install
  */
 function ga_stats_install() {
- 
+  drupal_install_schema('ga_stats');
 }
 
 /*
diff -up a/ga_stats/ga_stats.module b/ga_stats/ga_stats.module
--- a/ga_stats/ga_stats.module	2012-02-01 13:32:39.000000000 -0500
+++ b/ga_stats/ga_stats.module	2012-01-31 15:42:08.000000000 -0500
@@ -1,14 +1,14 @@
 <?php
   require_once('inc/ga.inc');
-  
+
   define('GA_ABBR', 'ga');
 /**
  * pull data from a source
  * @param $source_name : then name of the source from which to pull data
  * @param $metrics : an array or string of the metrics to pull
- * @param $time_frame : a time_frame obj 
+ * @param $time_frame : a time_frame obj
  * @param $end_time : the end time from which data is pulled
- * @return : an array of obj ready for the ga_stats_count table 
+ * @return : an array of obj ready for the ga_stats_count table
  */
 function ga_stats_get_data($metric, $start_time, $end_time, $timeframe='') {
   $data_array = ga_stats_ga_data($metric, $start_time, $end_time);
@@ -34,7 +34,7 @@ function ga_stats_get_data($metric, $sta
       $counts[] = $count;
     }
   }
-  
+
   return $counts;
 }
 
@@ -43,7 +43,7 @@ function ga_stats_get_data($metric, $sta
  */
 function ga_stats_views_api() {
   return array(
-    'api' => 2,
+    'api' => 3,
   );
 }
 
@@ -53,7 +53,7 @@ function ga_stats_views_api() {
  * TODO: May want to hook this up another way (drush?)
  */
 function ga_stats_cron() {
-  
+
   if (!cache_get('ga_stats_data')) {
     $data = ga_stats_update_counts();
     //save the data for 10 or 30 minutes (based on whether hourly data is enabled
@@ -64,7 +64,7 @@ function ga_stats_cron() {
     else {
       $add = 60 * 30;
     }
-    
+
     cache_set('ga_stats_data', $data, 'cache', time()+$add);
   }
 }
@@ -81,7 +81,7 @@ function ga_stats_update_counts() {
   $user = variable_get('ga_stats_email', '');
   $password = variable_get('ga_stats_password', '');
   $aid = variable_get('ga_stats_profile', '');
-  
+
   if ($user && $password) {
     foreach ($metrics as $metric => $title) {
       foreach ($timeframes as $key => $time) {
@@ -90,7 +90,7 @@ function ga_stats_update_counts() {
         $data= array_merge($data, $new_data);
       }
     }
-  
+
     db_query('DELETE FROM {ga_stats_count}');
     foreach ($data as $obj) {
       ga_stats_write_count($obj);
@@ -110,7 +110,7 @@ function ga_stats_update_counts() {
  */
 
 function ga_stats_menu() {
-  $items['admin/config/system/ga_stats'] = array(
+  $items['admin/settings/ga_stats'] = array(
     'title' => 'Google Analytics Statistics',
     'description' => 'Configuration for Google Analytics Statistics',
     'page callback' => 'drupal_get_form',
@@ -126,7 +126,7 @@ function ga_stats_menu() {
  */
 function ga_stats_admin_settings() {
   $form = array();
-  
+
   $form['ga_stats_login'] = array(
     '#type' => 'fieldset',
     '#title' => t('Google Analytics Login Information'),
@@ -135,14 +135,14 @@ function ga_stats_admin_settings() {
   if (variable_get('ga_stats_email', FALSE)) {
     $form['ga_stats_login']['#collapsed'] = TRUE;
   }
-  
+
   $form['ga_stats_login']['ga_stats_email'] = array(
     '#type' => 'textfield',
     '#title' => t('Account Email'),
     '#description' => t('The email account you use to log in to Google Analytics'),
     '#default_value' => variable_get('ga_stats_email', '')
   );
-  
+
   $form['ga_stats_login']['ga_stats_password'] = array(
     '#type' => 'password',
     '#title' => t('Account Password'),
@@ -162,7 +162,7 @@ function ga_stats_admin_settings() {
   $options = array();
   if (is_array($account)) {
     foreach ($account as $id => $value) {
-      $acc = $value->getProperties();    
+      $acc = $value->getProperties();
       $options[$acc['profileId']] = $acc['title'];
     }
   }
@@ -174,7 +174,7 @@ function ga_stats_admin_settings() {
       '#options' => $options,
       '#default_value' => variable_get('ga_stats_profile', '')
     );
-    
+
   }
   else {
     $form['ga_stats_accounts']['ga_stats_profile'] = array(
@@ -182,13 +182,13 @@ function ga_stats_admin_settings() {
       '#markup' => '<div class="messages warning">' . t('Email and Pasword not set or invalid. Please set the login information and save this form. You will then be able to view and configure account information.') . '</div>'
     );
   }
-  
+
   $form['enabled_stats'] = array(
     '#type' => 'fieldset',
     '#title' => t('Enabled Statistics'),
     '#description' => t('Make sure to clear the Drupal cache after changing this setting in order to inform Views of the new settings. <br/><em><b>WARNING:</b> Do not disable a setting which is currently in use in Views.</em>')
   );
-  
+
   $form['enabled_stats']['ga_stats_enabled_metrics'] = array(
     '#type' => 'checkboxes',
     '#default_value' => variable_get('ga_stats_enabled_metrics', array('pageviews')),
@@ -196,7 +196,7 @@ function ga_stats_admin_settings() {
     '#title' => t('Metrics'),
     '#description' => t('The metrics that will be available from Google Analytics in Views.')
   );
-  
+
   $form['enabled_stats']['ga_stats_enabled_timeframes'] = array(
     '#type' => 'checkboxes',
     '#default_value' => variable_get('ga_stats_enabled_timeframes', array('today', 'month')),
@@ -204,14 +204,14 @@ function ga_stats_admin_settings() {
     '#title' => t('Time Frames'),
     '#description' => t('The timeframes that will be available from Google Analytics in Views.')
   );
-  
+
   $form['ga_stats_max_results'] = array(
     '#type' => 'textfield',
     '#title' => t('Max Results per Metric/Timeframe'),
     '#description' => t('The max results that a call (a metric/timeframe combination) can return. MUST be a number.'),
     '#default_value' => variable_get('ga_stats_max_results', '100')
   );
-  
+
   if (variable_get('ga_stats_profile', FALSE)) {
     $form['actions']['ga_stats_update'] = array(
       '#type' => 'button',
Only in b/ga_stats: ga_stats.module.orig
diff -up a/ga_stats/ga_stats.views.inc b/ga_stats/ga_stats.views.inc
--- a/ga_stats/ga_stats.views.inc	2012-02-01 13:32:39.000000000 -0500
+++ b/ga_stats/ga_stats.views.inc	2012-02-03 14:13:25.000000000 -0500
@@ -45,4 +45,3 @@ function ga_stats_views_data() {
    
   return $data;
 }
-
Common subdirectories: a/ga_stats/inc and b/ga_stats/inc
