--- /home/anarcat/worklog_0.install	2007-03-15 20:55:28.000000000 -0400
+++ worklog.install	2007-03-15 21:06:30.000000000 -0400
@@ -1,7 +1,6 @@
 <?php
 // Create the database table on install (MySQL only for now)
 function worklog_install() {
-  drupal_set_message('Installing worklog');
   switch ($GLOBALS['db_type']) {
     case 'mysqli':
     case 'mysql':
@@ -45,10 +44,9 @@
     break;
   }
   if ($success) {
-    module_enable(array('worklog'));
-    drupal_set_message(t('The worklog module has successfully added tables to the database.'));
+    drupal_set_message(t('Worklog module installed tables successfully.'));
   } else {
-    drupal_set_message(t('The worklog module was unable to add tables to the database.'), 'error');
+    drupal_set_message(t('The installation of the worklog module was unsuccessful.'), 'error');
   }
 }
 
@@ -56,8 +54,7 @@
   if ($GLOBALS['db_type'] == 'mysql') {
     db_query("DROP TABLE IF EXISTS {worklog}");
     db_query("DROP TABLE IF EXISTS {worklog_invoice_map}");
-    db_query("DROP TABLE IF EXISTS {worklogs_invoice}");
-    drupal_set_message(t('The worklog module has been successfully removed from the database.'));
+    db_query("DROP TABLE IF EXISTS {worklog_invoice}");
   }
   drupal_set_message(t('The worklog module has been successfully removed.'));
 }
