diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 977550a7e14..6458faeb0e7 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1265,6 +1265,7 @@ function taxonomy_select_nodes($tids = array(), $operator = 'or', $depth = 0, $p * taxonomy_select_nodes(), and formats each node along with a pager. */ function taxonomy_render_nodes($result) { + $output = ''; if (db_num_rows($result) > 0) { while ($node = db_fetch_object($result)) { $output .= node_view(node_load($node->nid), 1);