From 2d7d796d9b256b221b8ca5aa10ae39c622db8ec4 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sat, 21 Feb 2004 23:43:07 +0000 Subject: - Fix implode() errors. --- modules/taxonomy.module | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/taxonomy.module') diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 56714971f..2187f64b3 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -734,6 +734,7 @@ function taxonomy_page() { // Build title: $sql = 'SELECT name FROM {term_data} WHERE tid IN (%s)'; $result = db_query($sql, $taxonomy->str_tids); + $names = array(); while ($term = db_fetch_object($result)) { $names[] = $term->name; } -- cgit v1.2.3