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 /modules/node/node.module | |
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 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index ae638e599..298dd57a4 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1373,7 +1373,7 @@ function node_search($op = 'search', $keys = NULL) { $arguments1[] = $c; } $conditions1 .= ' AND (' . implode(' OR ', $terms) . ')'; - $join1 .= ' INNER JOIN {term_node} tn ON n.vid = tn.vid'; + $join1 .= ' INNER JOIN {taxonomy_term_node} tn ON n.vid = tn.vid'; $keys = search_query_insert($keys, 'term'); } |