diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:25:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:25:13 +0000 |
commit | b86354c55c28f88b9bbd426d8faf405246148ee4 (patch) | |
tree | b9c2f224dfd4be3b3108be016333b5c446467092 /includes/database/database.inc | |
parent | b986cc556d3eb30afd95d996cbfbe92a7537411f (diff) | |
download | brdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.gz brdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.bz2 |
- Patch #225562 by Jody Lynn: change DB table names from eg. term_data to taxonomy_term_data.
Diffstat (limited to 'includes/database/database.inc')
-rw-r--r-- | includes/database/database.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index 4f97afd40..1f9433bc3 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -2539,7 +2539,7 @@ function db_affected_rows() { * @param $primary_table * Name or alias of the table which has the primary key field for this query. * Typical table names would be: {block}, {comment}, {forum}, {node}, - * {menu}, {term_data} or {vocabulary}. However, in most cases the usual + * {menu}, {taxonomy_term_data} or {taxonomy_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 * Name of the primary field. @@ -2586,7 +2586,7 @@ function _db_rewrite_sql($query = '', $primary_table = 'n', $primary_field = 'ni * @param $primary_table * Name or alias of the table which has the primary key field for this query. * Typical table names would be: {block}, {comment}, {forum}, {node}, - * {menu}, {term_data} or {vocabulary}. However, it is more common to use the + * {menu}, {taxonomy_term_data} or {taxonomy_vocabulary}. However, it is more common to use the * the usual table aliases: b, c, f, n, m, t or v. * @param $primary_field * Name of the primary field. |