Skip to content
Snippets Groups Projects
Commit e98c82e6 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #136202 by asimmonds: fixed indefined variable notice.

parent 840bb124
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment