Index: modules/og2list/og2list.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/og2list/og2list.install,v
retrieving revision 1.12
diff -u -r1.12 og2list.install
--- modules/og2list/og2list.install	30 Aug 2006 15:12:20 -0000	1.12
+++ modules/og2list/og2list.install	31 Aug 2006 00:45:02 -0000
@@ -11,7 +11,7 @@
   switch ($GLOBALS['db_type']) {
     case 'mysql':
     case 'mysqli':
-      db_query("CREATE TABLE og2list_groups (
+      db_query("CREATE TABLE {og2list_groups} (
  -- node-ID specific to the ogroup
  nid int(10) unsigned NOT NULL default 0,
  -- v-- FIXME misleading name (group_address)
@@ -26,7 +26,7 @@
  prefix varchar(128) NOT NULL default ''
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
-      db_query("CREATE TABLE og2list_outgoing_recipients (
+      db_query("CREATE TABLE {og2list_outgoing_recipients} (
  mid int(10) unsigned NOT NULL default 0,
  nid int(10) unsigned NOT NULL default 0,
  recipient_name varchar(60) NOT NULL default '',
@@ -46,7 +46,7 @@
  KEY recipient_address (recipient_address)
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
-      db_query("CREATE TABLE og2list_outgoing_content ( 
+      db_query("CREATE TABLE {og2list_outgoing_content} ( 
  mid int(10) unsigned NOT NULL auto_increment,
  -- Header fields.
  headers text NOT NULL default '',
@@ -68,7 +68,7 @@
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
 #-- Connection between Drupal node (nid,cid) and Message-ID header
-      db_query("CREATE TABLE og2list_msgid (
+      db_query("CREATE TABLE {og2list_msgid} (
         nid int(10) unsigned NOT NULL default '0',
         cid int(10) unsigned NOT NULL default '0',
         msgid varchar(128) NOT NULL default '',
@@ -86,7 +86,7 @@
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
 #-- mail-in.pl passes a *simple* mail to the og2list module
-      db_query("CREATE TABLE og2list_incoming_content (
+      db_query("CREATE TABLE {og2list_incoming_content} (
  mid int(10) unsigned NOT NULL auto_increment,
  -- Header fields.
  headers text NOT NULL default '',
@@ -101,13 +101,13 @@
  PRIMARY KEY (mid, msgid)
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
-      db_query("CREATE TABLE og2list_incoming_groups (
+      db_query("CREATE TABLE {og2list_incoming_groups} (
  mid int(10) unsigned NOT NULL,
  -- node-ID specific to the group
  oid int(10) unsigned NOT NULL
 ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
 
-      db_query("CREATE TABLE og2list_outgoing_arguments (
+      db_query("CREATE TABLE {og2list_outgoing_arguments} (
  mid int(10) unsigned NOT NULL default 0,
  nid int(10) unsigned NOT NULL default 0,
  timestamp int(11) NOT NULL default '0',
@@ -132,7 +132,7 @@
   switch ($GLOBALS['db_type']) {
     case 'mysql':
     case 'mysqli':
-      db_query("CREATE TABLE og2list_outgoing_arguments (
+      db_query("CREATE TABLE {og2list_outgoing_arguments} (
  mid int(10) unsigned NOT NULL default 0,
  nid int(10) unsigned NOT NULL default 0,
  timestamp int(11) NOT NULL default '0',
@@ -148,7 +148,7 @@
   switch ($GLOBALS['db_type']) {
     case 'mysql':
     case 'mysqli':
-      $ret[] = db_query('ALTER TABLE og2list_outgoing_recipients ADD KEY recipient_address (recipient_address)');
+      $ret[] = db_query('ALTER TABLE {og2list_outgoing_recipients} ADD KEY recipient_address (recipient_address)');
   }
   return $ret;
 }
