diff -upN ./README.txt ./README.txt
--- ./README.txt	2011-02-24 18:06:32.000000000 -0800
+++ ./README.txt	2011-02-25 19:42:52.000000000 -0800
@@ -39,7 +39,7 @@ Requirements
 ------------
 - Drupal 6.x
 - PHP 4.3.0 or greater
-- BadBehavior 2.0.x
+- BadBehavior 2.1.x
   (http://www.bad-behavior.ioerror.us/download/)
 
 Installation
@@ -57,8 +57,9 @@ Installation
    Here is the recommended steps to do this from the command line:
 
    cd /[path/to/site]/sites/all/libraries/
-   wget http://downloads.wordpress.org/plugin/bad-behavior.2.0.36.zip
-   unzip -j bad-behavior.2.0.36.zip bad-behavior/bad-behavior/* -d bad-behavior
+   wget http://downloads.wordpress.org/plugin/bad-behavior.2.1.11.zip
+   unzip bad-behavior.2.1.11.zip
+   rm bad-behavior.2.1.11.zip
 
 3. Enable the module as usual from the Drupal admin>>modules page.
 
diff -upN ./badbehavior.module ./badbehavior.module
--- ./badbehavior.module	2011-02-24 18:06:32.000000000 -0800
+++ ./badbehavior.module	2011-02-25 19:42:52.000000000 -0800
@@ -83,10 +83,10 @@ function badbehavior_start_badbehavior()
  * Load BadBehavior library files.
  *
  * On first run, this will also include the required badbehavior.inc,
- * core.inc.php, and version.inc.php files.
+ * and core.inc.php files.
  *
  * @param $files
- *   An array of BadBehavior files in the BB2_CWD/bad-behavior directory to
+ *   An array of BadBehavior files in the BB2_CWD/bad-behavior/bad-behavior directory to
  *   include. The file type (.inc.php) will automatically be added to the file
  *   name.
  * @return
@@ -97,11 +97,11 @@ function badbehavior_load_includes($file
 
   if (!isset($included)) {
     $included = TRUE;
-    array_unshift($files, 'core', 'version');
+    array_unshift($files, 'core');
   }
 
   foreach ($files as $file) {
-    $file = BB2_CWD . "/bad-behavior/$file.inc.php";
+    $file = BB2_CWD . "/bad-behavior/bad-behavior/$file.inc.php";
     if (is_file($file)) {
       require_once $file;
     }
@@ -109,7 +109,13 @@ function badbehavior_load_includes($file
       return FALSE;
     }
   }
-
+  $filemain = BB2_CWD . "/bad-behavior/bad-behavior-mysql.php";
+    if (is_file($filemain)) {
+      require_once $filemain;
+    }
+    else {
+      return FALSE;
+    }
   return TRUE;
 }
 
