diff --git a/ga_stats.info b/ga_stats.info
old mode 100755
new mode 100644
index 45272f3..0cc8a28
--- a/ga_stats.info
+++ b/ga_stats.info
@@ -1,4 +1,4 @@
-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"
+package = "Statistics"
\ No newline at end of file
diff --git a/ga_stats.install b/ga_stats.install
index 178eccc..6a29ea2 100755
--- a/ga_stats.install
+++ b/ga_stats.install
@@ -51,7 +51,7 @@ function ga_stats_schema() {
  * Implementation of hook_install
  */
 function ga_stats_install() {
- 
+  drupal_install_schema('ga_stats');
 }
 
 /*
diff --git a/ga_stats.module b/ga_stats.module
index bd79576..7e59b71 100755
--- a/ga_stats.module
+++ b/ga_stats.module
@@ -108,7 +108,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',
diff --git a/inc/ga.inc b/inc/ga.inc
index 89d3abf..3507fe9 100755
--- a/inc/ga.inc
+++ b/inc/ga.inc
@@ -139,7 +139,7 @@ function ga_stats_ga_get_accounts(){
  *  $report_id, $dimensions, $metrics, $sort_metric=null, $filter=null, $start_date=null, $end_date=null, $start_index=1, $max_results=30
  */
 
-function ga_stats_query_data($request){
+function ga_stats_query_data($request) {
   //this is really a waste I think because this shit is preprocessed
   require_once 'gapi.class.php';
   
