diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-12-03 16:32:22 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-12-03 16:32:22 +0000 |
commit | cadd9bd54ca9b3e5a95661c616d35a1a0045ab46 (patch) | |
tree | 6594d689ccf40b86fc16cf7f628ef06fa7ee50c7 /modules/system/system.api.php | |
parent | 5c72eb294ab1527b8da1b261cfbffeeb7ff98c9f (diff) | |
download | brdo-cadd9bd54ca9b3e5a95661c616d35a1a0045ab46.tar.gz brdo-cadd9bd54ca9b3e5a95661c616d35a1a0045ab46.tar.bz2 |
- Patch #335086 by recidive: rename node, filter and comment module tables to singular for consistency. Oh my.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 8aa10b2d0..03e9b4618 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -51,7 +51,7 @@ function hook_cron() { * 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: {blocks}, {comments}, {forum}, {node}, + * Typical table names would be: {block}, {comment}, {forum}, {node}, * {menu}, {term_data} or {vocabulary}. However, it is more common for * $primary_table to contain the usual table alias: b, c, f, n, m, t or v. * @param $primary_field @@ -1346,7 +1346,7 @@ function hook_schema() { 'unsigned' => TRUE, 'not null' => TRUE), 'vid' => array( - 'description' => t('The current {node_revisions}.vid version identifier.'), + 'description' => t('The current {node_revision}.vid version identifier.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, |