? .DS_Store
? INSTALL_5.txt
? admin-theme_5.patch
? admin_dashboard.patch
? admin_theme_default.patch
? administration.patch
? big_validate_submit.patch
? big_validate_submit_0.patch
? capitalize.patch
? capitalized_watchdog.module.patch
? categorise_tracker_0.patch
? categorise_tracker_1.patch
? comment-new.patch
? comment_validate_submit.patch
? contact_13.patch
? contact_validate_submit.patch
? db_next_id.patch
? default-date-format.patch
? dependencies.patch
? dependencies_15.patch
? dependencies_2.patch
? file.patch
? fix_signatures_5.patch
? form-checkboxes.patch
? form.inc.patch
? forum_22.patch
? forum_delete_form.patch
? help_message.patch
? jquery_changelog.txt
? multistep_1.patch
? node_validate_submit.patch
? path_validate_submit.patch
? required.patch
? search_validate_submit.patch
? system_validate_submit.patch
? taxonomy.module.diff.txt
? tracker_restrict_by_type.patch
? tracker_restrict_by_type_1.patch
? tracker_restrict_by_type_2.patch
? update_php-no_bogus_warning.patch.txt
? user.patch
? user_66.patch
? user_access_1.patch
? user_validate_submit.patch
? view_unpublished_nodes.patch
? watchdog_validate_submit.patch
? modules/.DS_Store
? modules/betterselect
? modules/comment/comment.module2
Index: includes/database.mysql.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database.mysql.inc,v
retrieving revision 1.59
diff -u -p -r1.59 database.mysql.inc
--- includes/database.mysql.inc	16 Sep 2006 19:26:22 -0000	1.59
+++ includes/database.mysql.inc	26 Sep 2006 00:31:36 -0000
@@ -237,6 +237,9 @@ function db_error() {
  * database tables. Instead, this function is used to return a new unique ID
  * of the type requested. If necessary, a new sequence with the given name
  * will be created.
+ *
+ * Note that the table name should be in brackets to preserve compatibility
+ * with table prefixes. For example, db_next_id("{node}_nid");
  */
 function db_next_id($name) {
   $name = db_prefix_tables($name);
Index: includes/database.pgsql.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database.pgsql.inc,v
retrieving revision 1.36
diff -u -p -r1.36 database.pgsql.inc
--- includes/database.pgsql.inc	4 Sep 2006 14:50:24 -0000	1.36
+++ includes/database.pgsql.inc	26 Sep 2006 00:31:36 -0000
@@ -221,6 +221,9 @@ function db_error() {
  * database tables. Instead, this function is used to return a new unique ID
  * of the type requested. If necessary, a new sequence with the given name
  * will be created.
+ *
+ * Note that the table name should be in brackets to preserve compatibility
+ * with table prefixes. For example, db_next_id("{node}_nid");
  */
 function db_next_id($name) {
   $id = db_result(db_query("SELECT nextval('%s_seq')", db_prefix_tables($name)));
Index: includes/form.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/form.inc,v
retrieving revision 1.151
diff -u -p -r1.151 form.inc
--- includes/form.inc	23 Sep 2006 07:50:16 -0000	1.151
+++ includes/form.inc	26 Sep 2006 00:31:37 -0000
@@ -1173,6 +1173,7 @@ function theme_checkbox($element) {
  *   A themed HTML string representing the checkbox set.
  */
 function theme_checkboxes($element) {
+  $element['#children'] = '<div class="form-checkboxes">'. $element['#children'] .'</div>';
   if ($element['#title'] || $element['#description']) {
     unset($element['#id']);
     return theme('form_element', $element, $element['#children']);
