diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-15 15:59:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-15 15:59:06 +0000 |
commit | e98c82e67939efaae859ce70ee728a08a26dc363 (patch) | |
tree | fffe570ede1be1f1852242ab1f2e03d582abe9c3 | |
parent | 840bb124eaf249a4f66e6e5491e3ac0e8ad7a36f (diff) | |
download | brdo-e98c82e67939efaae859ce70ee728a08a26dc363.tar.gz brdo-e98c82e67939efaae859ce70ee728a08a26dc363.tar.bz2 |
- Patch #136202 by asimmonds: fixed indefined variable notice.
-rw-r--r-- | modules/taxonomy/taxonomy.module | 1 |
1 files changed, 1 insertions, 0 deletions
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); |