From e98c82e67939efaae859ce70ee728a08a26dc363 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 15 Apr 2007 15:59:06 +0000 Subject: - Patch #136202 by asimmonds: fixed indefined variable notice. --- modules/taxonomy/taxonomy.module | 1 + 1 file changed, 1 insertion(+) (limited to 'modules') diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 41fd596d7..07afcaf40 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1276,6 +1276,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); -- cgit v1.2.3