? boost-631452.patch
Index: boost.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/boost/boost.module,v
retrieving revision 1.3.2.2.2.5.2.246
diff -u -p -r1.3.2.2.2.5.2.246 boost.module
--- boost.module	11 Nov 2009 08:14:03 -0000	1.3.2.2.2.5.2.246
+++ boost.module	13 Nov 2009 00:10:19 -0000
@@ -3476,7 +3476,7 @@ function boost_db_insert_multi($table, $
   }
   // Build the fields part of this query
   $fields = implode(', ', $fields);
-  $query = "INSERT INTO {$table} ($fields) VALUES $v";
+  $query = "INSERT INTO {" . $table . "} ($fields) VALUES $v";
   // Run the query
   if ($suppress) {
     return @db_query($query, $data);
@@ -3512,7 +3512,7 @@ function boost_db_delete_in_multi($table
     $in .= ', ' . $placeholder;
   }
   // Build the query
-  $query = "DELETE FROM {$table} WHERE $field IN ($in)";
+  $query = "DELETE FROM {" . $table . "} WHERE $field IN ($in)";
   // Run the query
   return db_query($query, $data);
 }
@@ -3552,7 +3552,7 @@ function boost_db_update_set_multi($tabl
     $in .= ', ' . $where_placeholder;
   }
   // Build the query
-  $query = "UPDATE {$table} SET $set_field = $set_placeholders WHERE $where_field IN ($in)";
+  $query = "UPDATE {" . $table . "} SET $set_field = $set_placeholders WHERE $where_field IN ($in)";
   // Add the set value to the top of the array
   array_unshift($data, $set_value);
   // Run the query
@@ -3586,7 +3586,7 @@ function boost_db_select_in_multi($table
     $in .= ', ' . $placeholder;
   }
   // Build the query
-  $query = "SELECT * FROM {$table} WHERE $field IN ($in)";
+  $query = "SELECT * FROM {" . $table . "} WHERE $field IN ($in)";
   // Run the query
   return db_query($query, $data);
 }
