From 26e5362cf957be9aeb4da8b0a76225a4c91da863 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 28 Dec 2003 00:05:49 +0000 Subject: Fixed bug #4551: missing {} for prefix support --- modules/taxonomy/taxonomy.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/taxonomy/taxonomy.module') diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 5bed8bb16..693bd36f8 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -736,7 +736,7 @@ function taxonomy_page() { break; default: // Build title: - $sql = 'SELECT name FROM term_data WHERE tid IN (%s)'; + $sql = 'SELECT name FROM {term_data} WHERE tid IN (%s)'; $result = db_query($sql, $taxonomy->str_tids); while ($term = db_fetch_object($result)) { $names[] = $term->name; -- cgit v1.2.3