diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-18 20:03:19 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-18 20:03:19 +0000 |
commit | 8971add8493d49ed0e170a2521a62f2f0f39137c (patch) | |
tree | d22f43ae4213b84c1089e7c12aa31c9220e77dd3 /modules/taxonomy | |
parent | 5d31f59573b8a559b06842b7f90cc2bd588025a2 (diff) | |
download | brdo-8971add8493d49ed0e170a2521a62f2f0f39137c.tar.gz brdo-8971add8493d49ed0e170a2521a62f2f0f39137c.tar.bz2 |
#163191 follow up patch by hswong3i and pwolanin: use a has_rows flag where we dont need a counter
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 738448e97..b557a810a 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -983,12 +983,12 @@ function taxonomy_select_nodes($tids = array(), $operator = 'or', $depth = 0, $p */ function taxonomy_render_nodes($result) { $output = ''; - $num_rows = 0; + $has_rows = FALSE; while ($node = db_fetch_object($result)) { $output .= node_view(node_load($node->nid), 1); - $num_rows++; + $has_rows = TRUE; } - if ($num_rows > 0) { + if ($has_rows) { $output .= theme('pager', NULL, variable_get('default_nodes_main', 10), 0); } else { |