diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:41:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:41:39 +0000 |
commit | 77936aef4c487e8b3265cb28e72d104004cb1172 (patch) | |
tree | d2dbc969ff08f968f248ccedb39dc846950e3480 /modules/node/node.admin.inc | |
parent | be36b9205e25595f5e4bf0dba4de33f5f620b33e (diff) | |
download | brdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.gz brdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.bz2 |
- Rollback of #225562 -- I think there is still something wrong.
Diffstat (limited to 'modules/node/node.admin.inc')
-rw-r--r-- | modules/node/node.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index 992134b1a..090dd5cad 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -184,7 +184,7 @@ function node_build_filter_query() { case 'term': $table = "tn$index"; $where[] = "$table.tid = %d"; - $join .= "INNER JOIN {taxonomy_term_node} $table ON n.nid = $table.nid "; + $join .= "INNER JOIN {term_node} $table ON n.nid = $table.nid "; break; case 'type': $where[] = "n.type = '%s'"; |