summaryrefslogtreecommitdiff
path: root/modules/system/system.api.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-13 22:25:13 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-13 22:25:13 +0000
commitb86354c55c28f88b9bbd426d8faf405246148ee4 (patch)
treeb9c2f224dfd4be3b3108be016333b5c446467092 /modules/system/system.api.php
parentb986cc556d3eb30afd95d996cbfbe92a7537411f (diff)
downloadbrdo-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 'modules/system/system.api.php')
-rw-r--r--modules/system/system.api.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index e6d3b3038..93c3032cc 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -41,7 +41,7 @@ function hook_cron() {
* shall be made DISTINCT. For node objects, primary field is always called nid.
* For taxonomy terms, it is tid and for vocabularies it is vid. For comments,
* it is cid. Primary table is the table where the primary object (node, file,
- * term_node etc.) is.
+ * taxonomy_term_node etc.) is.
*
* You shall return an associative array. Possible keys are 'join', 'where' and
* 'distinct'. The value of 'distinct' shall be 1 if you want that the
@@ -52,7 +52,7 @@ function hook_cron() {
* @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 for
+ * {menu}, {taxonomy_term_data} or {taxonomy_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
* Name of the primary field.