Index: modules/simpletest/drupal_web_test_case.php =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/drupal_web_test_case.php,v retrieving revision 1.56 diff -u -r1.56 drupal_web_test_case.php --- modules/simpletest/drupal_web_test_case.php 9 Nov 2008 03:07:54 -0000 1.56 +++ modules/simpletest/drupal_web_test_case.php 16 Nov 2008 18:25:10 -0000 @@ -397,7 +397,7 @@ node_save($node); // small hack to link revisions to our test user - db_query('UPDATE {node_revisions} SET uid = %d WHERE vid = %d', $node->uid, $node->vid); + db_query('UPDATE {node_revision} SET uid = %d WHERE vid = %d', $node->uid, $node->vid); return $node; } Index: modules/filter/filter.install =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.install,v retrieving revision 1.10 diff -u -r1.10 filter.install --- modules/filter/filter.install 15 Nov 2008 13:01:06 -0000 1.10 +++ modules/filter/filter.install 16 Nov 2008 18:25:05 -0000 @@ -5,7 +5,7 @@ * Implementation of hook_schema(). */ function filter_schema() { - $schema['filters'] = array( + $schema['filter'] = array( 'description' => 'Table that maps filters (HTML corrector) to input formats (Filtered HTML).', 'fields' => array( 'fid' => array( @@ -17,7 +17,7 @@ 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => 'Foreign key: The {filter_formats}.format to which this filter is assigned.', + 'description' => 'Foreign key: The {filter_format}.format to which this filter is assigned.', ), 'module' => array( 'type' => 'varchar', @@ -49,7 +49,7 @@ 'list' => array('format', 'weight', 'module', 'delta'), ), ); - $schema['filter_formats'] = array( + $schema['filter_format'] = array( 'description' => 'Stores input formats: custom groupings of filters, such as Filtered HTML.', 'fields' => array( 'format' => array( @@ -122,3 +122,13 @@ } return $ret; } + +/** + * Rename {filters} table to {filter} and {filter_formats} table to {filter_format}. + */ +function filter_update_7002() { + $ret = array(); + db_rename_table($ret, 'filters', 'filter'); + db_rename_table($ret, 'filter_formats', 'filter_format'); + return $ret; +} Index: modules/filter/filter.test =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.test,v retrieving revision 1.8 diff -u -r1.8 filter.test --- modules/filter/filter.test 12 Oct 2008 04:30:06 -0000 1.8 +++ modules/filter/filter.test 16 Nov 2008 18:25:06 -0000 @@ -54,7 +54,7 @@ $this->drupalPost('admin/settings/filters/' . $filtered . '/order', $edit, t('Save configuration')); $this->assertText(t('The filter ordering has been saved.'), t('Order saved successfully.')); - $result = db_query('SELECT * FROM {filters} WHERE format = %d ORDER BY weight ASC', $filtered); + $result = db_query('SELECT * FROM {filter} WHERE format = %d ORDER BY weight ASC', $filtered); $filters = array(); while ($filter = db_fetch_object($result)) { if ($filter->delta == $second_filter || $filter->delta == $first_filter) { @@ -154,7 +154,7 @@ * @return Array Array containing filtered and full filter ids. */ function checkFilterFormats() { - $result = db_query('SELECT format, name FROM {filter_formats}'); + $result = db_query('SELECT format, name FROM {filter_format}'); $filtered = -1; $full = -1; @@ -177,7 +177,7 @@ * @return object Filter object. */ function getFilter($name) { - return db_fetch_object(db_query("SELECT * FROM {filter_formats} WHERE name = '%s'", $name)); + return db_fetch_object(db_query("SELECT * FROM {filter_format} WHERE name = '%s'", $name)); } } @@ -226,7 +226,7 @@ 'filters[filter/' . $filter . ']' => TRUE, ); $this->drupalPost('admin/settings/filters/add', $edit, t('Save configuration')); - return db_fetch_object(db_query("SELECT * FROM {filter_formats} WHERE name = '%s'", $edit['name'])); + return db_fetch_object(db_query("SELECT * FROM {filter_format} WHERE name = '%s'", $edit['name'])); } function deleteFormat($format) { Index: modules/filter/filter.module =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v retrieving revision 1.234 diff -u -r1.234 filter.module --- modules/filter/filter.module 15 Nov 2008 11:45:03 -0000 1.234 +++ modules/filter/filter.module 16 Nov 2008 18:25:05 -0000 @@ -295,7 +295,7 @@ if (!isset($formats)) { $formats = array(); - $query = db_select('filter_formats', 'f'); + $query = db_select('filter_format', 'f'); $query->addField('f', 'format', 'format'); $query->addField('f', 'name', 'name'); $query->addField('f', 'roles', 'roles'); @@ -361,7 +361,7 @@ static $cache = array(); $format = filter_resolve_format($format); if (!isset($cache[$format])) { - $cache[$format] = db_result(db_query('SELECT cache FROM {filter_formats} WHERE format = %d', $format)); + $cache[$format] = db_result(db_query('SELECT cache FROM {filter_format} WHERE format = %d', $format)); } return $cache[$format]; } @@ -374,7 +374,7 @@ if (!isset($filters[$format])) { $filters[$format] = array(); - $result = db_query("SELECT * FROM {filters} WHERE format = %d ORDER BY weight, module, delta", $format); + $result = db_query("SELECT * FROM {filter} WHERE format = %d ORDER BY weight, module, delta", $format); while ($filter = db_fetch_object($result)) { $list = module_invoke($filter->module, 'filter', 'list'); if (isset($list) && is_array($list) && isset($list[$filter->delta])) { @@ -560,7 +560,7 @@ $formats = filter_formats(); } else { - $formats = array(db_fetch_object(db_query("SELECT * FROM {filter_formats} WHERE format = %d", $format))); + $formats = array(db_fetch_object(db_query("SELECT * FROM {filter_format} WHERE format = %d", $format))); } $tips = array(); Index: modules/filter/filter.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/filter/filter.admin.inc,v retrieving revision 1.17 diff -u -r1.17 filter.admin.inc --- modules/filter/filter.admin.inc 15 Nov 2008 08:23:07 -0000 1.17 +++ modules/filter/filter.admin.inc 16 Nov 2008 18:25:04 -0000 @@ -50,7 +50,7 @@ foreach ($form_state['values'] as $id => $data) { if (is_array($data) && isset($data['weight'])) { // Only update if this is a form element with weight. - db_query("UPDATE {filter_formats} SET weight = %d WHERE format = %d", $data['weight'], $id); + db_query("UPDATE {filter_format} SET weight = %d WHERE format = %d", $data['weight'], $id); } } drupal_set_message(t('The input format ordering has been saved.')); @@ -179,7 +179,7 @@ function filter_admin_format_form_validate($form, &$form_state) { if (!isset($form_state['values']['format'])) { $name = trim($form_state['values']['name']); - $result = db_fetch_object(db_query("SELECT format FROM {filter_formats} WHERE name='%s'", $name)); + $result = db_fetch_object(db_query("SELECT format FROM {filter_format} WHERE name='%s'", $name)); if ($result) { form_set_error('name', t('Filter format names need to be unique. A format named %name already exists.', array('%name' => $name))); } @@ -198,21 +198,21 @@ // Add a new filter format. if (!$format) { $new = TRUE; - db_query("INSERT INTO {filter_formats} (name) VALUES ('%s')", $name); - $format = db_result(db_query("SELECT MAX(format) AS format FROM {filter_formats}")); + db_query("INSERT INTO {filter_format} (name) VALUES ('%s')", $name); + $format = db_result(db_query("SELECT MAX(format) AS format FROM {filter_format}")); drupal_set_message(t('Added input format %format.', array('%format' => $name))); } else { drupal_set_message(t('The input format settings have been updated.')); } - db_query("DELETE FROM {filters} WHERE format = %d", $format); + db_query("DELETE FROM {filter} WHERE format = %d", $format); foreach ($form_state['values']['filters'] as $id => $checked) { if ($checked) { list($module, $delta) = explode('/', $id); // Add new filters to the bottom. $weight = isset($current[$id]->weight) ? $current[$id]->weight : 10; - db_query("INSERT INTO {filters} (format, module, delta, weight) VALUES (%d, '%s', %d, %d)", $format, $module, $delta, $weight); + db_query("INSERT INTO {filter} (format, module, delta, weight) VALUES (%d, '%s', %d, %d)", $format, $module, $delta, $weight); // Check if there are any 'no cache' filters. $cache &= !module_invoke($module, 'filter', 'no cache', $delta); @@ -237,7 +237,7 @@ $roles = ',' . implode(',', $roles) . ','; } - db_query("UPDATE {filter_formats} SET cache = %d, name='%s', roles = '%s' WHERE format = %d", $cache, $name, $roles, $format); + db_query("UPDATE {filter_format} SET cache = %d, name='%s', roles = '%s' WHERE format = %d", $cache, $name, $roles, $format); cache_clear_all($format . ':', 'cache_filter', TRUE); @@ -258,7 +258,7 @@ */ function filter_admin_delete() { $format = arg(4); - $format = db_fetch_object(db_query('SELECT * FROM {filter_formats} WHERE format = %d', $format)); + $format = db_fetch_object(db_query('SELECT * FROM {filter_format} WHERE format = %d', $format)); if ($format) { if ($format->format != variable_get('filter_default_format', 1)) { @@ -281,13 +281,13 @@ * Process filter delete form submission. */ function filter_admin_delete_submit($form, &$form_state) { - db_query("DELETE FROM {filter_formats} WHERE format = %d", $form_state['values']['format']); - db_query("DELETE FROM {filters} WHERE format = %d", $form_state['values']['format']); + db_query("DELETE FROM {filter_format} WHERE format = %d", $form_state['values']['format']); + db_query("DELETE FROM {filter} WHERE format = %d", $form_state['values']['format']); $default = variable_get('filter_default_format', 1); // Replace existing instances of the deleted format with the default format. - db_query("UPDATE {node_revisions} SET format = %d WHERE format = %d", $default, $form_state['values']['format']); - db_query("UPDATE {comments} SET format = %d WHERE format = %d", $default, $form_state['values']['format']); + db_query("UPDATE {node_revision} SET format = %d WHERE format = %d", $default, $form_state['values']['format']); + db_query("UPDATE {comment} SET format = %d WHERE format = %d", $default, $form_state['values']['format']); db_query("UPDATE {box} SET format = %d WHERE format = %d", $default, $form_state['values']['format']); cache_clear_all($form_state['values']['format'] . ':', 'cache_filter', TRUE); @@ -402,7 +402,7 @@ function filter_admin_order_submit($form, &$form_state) { foreach ($form_state['values']['weights'] as $id => $weight) { list($module, $delta) = explode('/', $id); - db_query("UPDATE {filters} SET weight = %d WHERE format = %d AND module = '%s' AND delta = %d", $weight, $form_state['values']['format'], $module, $delta); + db_query("UPDATE {filter} SET weight = %d WHERE format = %d AND module = '%s' AND delta = %d", $weight, $form_state['values']['format'], $module, $delta); } drupal_set_message(t('The filter ordering has been saved.')); Index: modules/search/search.module =================================================================== RCS file: /cvs/drupal/drupal/modules/search/search.module,v retrieving revision 1.275 diff -u -r1.275 search.module --- modules/search/search.module 15 Nov 2008 11:45:04 -0000 1.275 +++ modules/search/search.module 16 Nov 2008 18:25:09 -0000 @@ -508,7 +508,7 @@ $linknid = $match[1]; if ($linknid > 0) { // Note: ignore links to uncachable nodes to avoid redirect bugs. - $node = db_fetch_object(db_query('SELECT n.title, n.nid, n.vid, r.format FROM {node} n INNER JOIN {node_revisions} r ON n.vid = r.vid WHERE n.nid = %d', $linknid)); + $node = db_fetch_object(db_query('SELECT n.title, n.nid, n.vid, r.format FROM {node} n INNER JOIN {node_revision} r ON n.vid = r.vid WHERE n.nid = %d', $linknid)); if (filter_format_allowcache($node->format)) { $link = TRUE; $linktitle = $node->title; Index: includes/database/database.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/database.inc,v retrieving revision 1.28 diff -u -r1.28 database.inc --- includes/database/database.inc 15 Nov 2008 08:23:06 -0000 1.28 +++ includes/database/database.inc 16 Nov 2008 18:25:01 -0000 @@ -2313,7 +2313,7 @@ * Query to be rewritten. * @param $primary_table * Name or alias of the table which has the primary key field for this query. - * Typical table names would be: {block}, {comments}, {forum}, {node}, + * Typical table names would be: {block}, {comment}, {forum}, {node}, * {menu}, {term_data} or {vocabulary}. However, in most cases the usual * table alias (b, c, f, n, m, t or v) is used instead of the table name. * @param $primary_field @@ -2360,7 +2360,7 @@ * Query to be rewritten. * @param $primary_table * Name or alias of the table which has the primary key field for this query. - * Typical table names would be: {block}, {comments}, {forum}, {node}, + * Typical table names would be: {block}, {comment}, {forum}, {node}, * {menu}, {term_data} or {vocabulary}. However, it is more common to use the * the usual table aliases: b, c, f, n, m, t or v. * @param $primary_field Index: includes/database/schema.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/database/schema.inc,v retrieving revision 1.4 diff -u -r1.4 schema.inc --- includes/database/schema.inc 31 Oct 2008 15:46:16 -0000 1.4 +++ includes/database/schema.inc 16 Nov 2008 18:25:02 -0000 @@ -38,7 +38,7 @@ * References to other tables should be enclosed in * curly-brackets. For example, the node table vid field * description might contain "Always holds the largest (most - * recent) {node_revisions}.vid value for this nid." + * recent) {node_revision}.vid value for this nid." * - 'type': The generic datatype: 'varchar', 'int', 'serial' * 'float', 'numeric', 'text', 'blob' or 'datetime'. Most types * just map to the according database engine specific Index: modules/node/node.pages.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v retrieving revision 1.45 diff -u -r1.45 node.pages.inc --- modules/node/node.pages.inc 13 Oct 2008 00:33:03 -0000 1.45 +++ modules/node/node.pages.inc 16 Nov 2008 18:25:08 -0000 @@ -575,12 +575,12 @@ function node_revision_delete_confirm_submit($form, &$form_state) { $node_revision = $form['#node_revision']; - db_query("DELETE FROM {node_revisions} WHERE nid = %d AND vid = %d", $node_revision->nid, $node_revision->vid); + db_query("DELETE FROM {node_revision} WHERE nid = %d AND vid = %d", $node_revision->nid, $node_revision->vid); node_invoke_nodeapi($node_revision, 'delete_revision'); watchdog('content', '@type: deleted %title revision %revision.', array('@type' => $node_revision->type, '%title' => $node_revision->title, '%revision' => $node_revision->vid)); drupal_set_message(t('Revision from %revision-date of @type %title has been deleted.', array('%revision-date' => format_date($node_revision->revision_timestamp), '@type' => node_get_types('name', $node_revision), '%title' => $node_revision->title))); $form_state['redirect'] = 'node/' . $node_revision->nid; - if (db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', $node_revision->nid)) > 1) { + if (db_result(db_query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = %d', $node_revision->nid)) > 1) { $form_state['redirect'] .= '/revisions'; } } Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.996 diff -u -r1.996 node.module --- modules/node/node.module 15 Nov 2008 11:45:03 -0000 1.996 +++ modules/node/node.module 16 Nov 2008 18:25:08 -0000 @@ -775,7 +775,7 @@ // Retrieve a field list based on the site's schema. $fields = drupal_schema_fields_sql('node', 'n'); - $fields = array_merge($fields, drupal_schema_fields_sql('node_revisions', 'r')); + $fields = array_merge($fields, drupal_schema_fields_sql('node_revision', 'r')); $fields = array_merge($fields, array('u.name', 'u.picture', 'u.data')); // Remove fields not needed in the query: n.vid and r.nid are redundant, // n.title is unnecessary because the node title comes from the @@ -791,10 +791,10 @@ // No db_rewrite_sql is applied so as to get complete indexing for search. if ($revision) { array_unshift($arguments, $revision); - $node = db_fetch_object(db_query('SELECT ' . $fields . ' FROM {node} n INNER JOIN {users} u ON u.uid = n.uid INNER JOIN {node_revisions} r ON r.nid = n.nid AND r.vid = %d WHERE ' . $cond, $arguments)); + $node = db_fetch_object(db_query('SELECT ' . $fields . ' FROM {node} n INNER JOIN {users} u ON u.uid = n.uid INNER JOIN {node_revision} r ON r.nid = n.nid AND r.vid = %d WHERE ' . $cond, $arguments)); } else { - $node = db_fetch_object(db_query('SELECT ' . $fields . ' FROM {node} n INNER JOIN {users} u ON u.uid = n.uid INNER JOIN {node_revisions} r ON r.vid = n.vid WHERE ' . $cond, $arguments)); + $node = db_fetch_object(db_query('SELECT ' . $fields . ' FROM {node} n INNER JOIN {users} u ON u.uid = n.uid INNER JOIN {node_revision} r ON r.vid = n.vid WHERE ' . $cond, $arguments)); } if ($node && $node->nid) { @@ -915,7 +915,7 @@ $node->is_new = TRUE; // When inserting a node, $node->log must be set because - // {node_revisions}.log does not (and cannot) have a default + // {node_revision}.log does not (and cannot) have a default // value. If the user does not have permission to create // revisions, however, the form will not contain an element for // log so $node->log will be unset at this point. @@ -997,10 +997,10 @@ $temp_uid = $node->uid; $node->uid = $uid; if (isset($update)) { - drupal_write_record('node_revisions', $node, $update); + drupal_write_record('node_revision', $node, $update); } else { - drupal_write_record('node_revisions', $node); + drupal_write_record('node_revision', $node); } $node->uid = $temp_uid; } @@ -1014,7 +1014,7 @@ if (node_access('delete', $node)) { db_query('DELETE FROM {node} WHERE nid = %d', $node->nid); - db_query('DELETE FROM {node_revisions} WHERE nid = %d', $node->nid); + db_query('DELETE FROM {node_revision} WHERE nid = %d', $node->nid); // Call the node-specific callback (if any): node_invoke($node, 'delete'); @@ -1417,7 +1417,7 @@ */ function node_user_delete(&$edit, &$user) { db_query('UPDATE {node} SET uid = 0 WHERE uid = %d', $user->uid); - db_query('UPDATE {node_revisions} SET uid = 0 WHERE uid = %d', $user->uid); + db_query('UPDATE {node_revision} SET uid = 0 WHERE uid = %d', $user->uid); } /** @@ -1484,7 +1484,7 @@ // different revisions so there is no need for a separate database check. // Also, if you try to revert to or delete the current revision, that's // not good. - if ($is_current_revision && (db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', $node->nid)) == 1 || $op == 'update' || $op == 'delete')) { + if ($is_current_revision && (db_result(db_query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = %d', $node->nid)) == 1 || $op == 'update' || $op == 'delete')) { $access[$node->vid] = FALSE; } elseif (user_access('administer nodes')) { @@ -1702,7 +1702,7 @@ */ function node_revision_list($node) { $revisions = array(); - $result = db_query('SELECT r.vid, r.title, r.log, r.uid, n.vid AS current_vid, r.timestamp, u.name FROM {node_revisions} r LEFT JOIN {node} n ON n.vid = r.vid INNER JOIN {users} u ON u.uid = r.uid WHERE r.nid = %d ORDER BY r.timestamp DESC', $node->nid); + $result = db_query('SELECT r.vid, r.title, r.log, r.uid, n.vid AS current_vid, r.timestamp, u.name FROM {node_revision} r LEFT JOIN {node} n ON n.vid = r.vid INNER JOIN {users} u ON u.uid = r.uid WHERE r.nid = %d ORDER BY r.timestamp DESC', $node->nid); while ($revision = db_fetch_object($result)) { $revisions[$revision->vid] = $revision; } Index: modules/node/node.install =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.install,v retrieving revision 1.8 diff -u -r1.8 node.install --- modules/node/node.install 15 Nov 2008 13:01:08 -0000 1.8 +++ modules/node/node.install 16 Nov 2008 18:25:06 -0000 @@ -15,7 +15,7 @@ 'not null' => TRUE, ), 'vid' => array( - 'description' => 'The current {node_revisions}.vid version identifier.', + 'description' => 'The current {node_revision}.vid version identifier.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -210,7 +210,7 @@ 'primary key' => array('nid'), ); - $schema['node_revisions'] = array( + $schema['node_revision'] = array( 'description' => 'Stores information about each saved version of a {node}.', 'fields' => array( 'nid' => array( @@ -326,7 +326,7 @@ 'default' => '', ), 'has_body' => array( - 'description' => 'Boolean indicating whether this type uses the {node_revisions}.body field.', + 'description' => 'Boolean indicating whether this type uses the {node_revision}.body field.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, @@ -398,5 +398,14 @@ } /** + * Rename {node_revisions} table to {node_revision}. + */ +function node_update_7001() { + $ret = array(); + db_rename_table($ret, 'node_revisions', 'node_revision'); + return $ret; +} + +/** * End of 6.x to 7.x updates */ Index: modules/node/node.test =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.test,v retrieving revision 1.7 diff -u -r1.7 node.test --- modules/node/node.test 11 Oct 2008 18:29:20 -0000 1.7 +++ modules/node/node.test 16 Nov 2008 18:25:08 -0000 @@ -88,7 +88,7 @@ $this->assertRaw(t('Revision from %revision-date of @type %title has been deleted.', array('%revision-date' => format_date($nodes[1]->revision_timestamp), '@type' => 'Page', '%title' => $nodes[1]->title)), t('Revision deleted.')); - $this->assertTrue(db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d and vid = %d', $node->nid, $nodes[1]->vid)) == 0, t('Revision not found.')); + $this->assertTrue(db_result(db_query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = %d and vid = %d', $node->nid, $nodes[1]->vid)) == 0, t('Revision not found.')); } } Index: includes/form.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/form.inc,v retrieving revision 1.304 diff -u -r1.304 form.inc --- includes/form.inc 15 Nov 2008 15:32:36 -0000 1.304 +++ includes/form.inc 16 Nov 2008 18:25:00 -0000 @@ -1787,7 +1787,7 @@ * Add input format selector to text elements with the #input_format property. * * The #input_format property should be the ID of an input format, found in - * {filter_formats}.format, which gets passed to filter_form(). + * {filter_format}.format, which gets passed to filter_form(). * * If the property #input_format is set, the form element will be expanded into * two separate form elements, one holding the content of the element, and the Index: modules/comment/comment.install =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.install,v retrieving revision 1.27 diff -u -r1.27 comment.install --- modules/comment/comment.install 15 Nov 2008 13:01:05 -0000 1.27 +++ modules/comment/comment.install 16 Nov 2008 18:25:04 -0000 @@ -109,6 +109,15 @@ } /** + * Rename {comments} table to {comment}. + */ +function comment_update_7002() { + $ret = array(); + db_rename_table($ret, 'comments', 'comment'); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ @@ -117,7 +126,7 @@ * Implementation of hook_schema(). */ function comment_schema() { - $schema['comments'] = array( + $schema['comment'] = array( 'description' => 'Stores comments and associated data.', 'fields' => array( 'cid' => array( @@ -129,7 +138,7 @@ 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => 'The {comments}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.', + 'description' => 'The {comment}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.', ), 'nid' => array( 'type' => 'int', @@ -182,7 +191,7 @@ 'size' => 'small', 'not null' => TRUE, 'default' => 0, - 'description' => 'The {filter_formats}.format of the comment body.', + 'description' => 'The {filter_format}.format of the comment body.', ), 'thread' => array( 'type' => 'varchar', @@ -232,19 +241,19 @@ 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comments}.timestamp.', + 'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.', ), 'last_comment_name' => array( 'type' => 'varchar', 'length' => 60, 'not null' => FALSE, - 'description' => 'The name of the latest author to post a comment on this node, from {comments}.name.', + 'description' => 'The name of the latest author to post a comment on this node, from {comment}.name.', ), 'last_comment_uid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => 'The user ID of the latest author to post a comment on this node, from {comments}.uid.', + 'description' => 'The user ID of the latest author to post a comment on this node, from {comment}.uid.', ), 'comment_count' => array( 'type' => 'int', Index: modules/comment/comment.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.admin.inc,v retrieving revision 1.11 diff -u -r1.11 comment.admin.inc --- modules/comment/comment.admin.inc 11 Nov 2008 21:44:01 -0000 1.11 +++ modules/comment/comment.admin.inc 16 Nov 2008 18:25:04 -0000 @@ -68,7 +68,7 @@ array('data' => t('Time'), 'field' => 'timestamp', 'sort' => 'desc'), array('data' => t('Operations')), )); - $result = pager_query('SELECT c.subject, c.nid, c.cid, c.comment, c.timestamp, c.status, c.name, c.homepage, u.name AS registered_name, u.uid, n.title as node_title FROM {comments} c INNER JOIN {users} u ON u.uid = c.uid INNER JOIN {node} n ON n.nid = c.nid WHERE c.status = %d' . tablesort_sql($form['header']['#value']), 50, 0, NULL, $status); + $result = pager_query('SELECT c.subject, c.nid, c.cid, c.comment, c.timestamp, c.status, c.name, c.homepage, u.name AS registered_name, u.uid, n.title as node_title FROM {comment} c INNER JOIN {users} u ON u.uid = c.uid INNER JOIN {node} n ON n.nid = c.nid WHERE c.status = %d' . tablesort_sql($form['header']['#value']), 50, 0, NULL, $status); // Build a table listing the appropriate comments. $destination = drupal_get_destination(); @@ -203,7 +203,7 @@ foreach (array_filter($edit['comments']) as $cid => $value) { $comment = comment_load($cid); if (is_object($comment) && is_numeric($comment->cid)) { - $subject = db_result(db_query('SELECT subject FROM {comments} WHERE cid = %d', $cid)); + $subject = db_result(db_query('SELECT subject FROM {comment} WHERE cid = %d', $cid)); $form['comments'][$cid] = array('#type' => 'hidden', '#value' => $cid, '#prefix' => '